* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Expert Sans Light", "Trebuchet MS", Arial, Verdana, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 0;
    display: inline-block;
    height: 40px;
    width: auto;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo a span {
    display: inline-block;
}

.logo a span img {
    height: 40px !important;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #00aeef;
    color: #fff;
}

.btn-primary:hover {
    background: #0099d4;
    transform: translateY(-1px);
}

.header-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.header-link:hover {
    color: #00aeef;
}

.icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    font-size: 14px;
}

.icon-phone::before {
    content: "📞";
}

.icon-location::before {
    content: "📍";
}

.icon-search::before {
    content: "🔍";
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2001;
    position: relative;
    transition: transform 0.2s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.hamburger {
    display: block;
    width: 24px;
    height: 3px;
    background: #333;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 3px;
    background: #333;
    left: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
    transform: rotate(180deg);
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(0px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0);
    will-change: transform;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
    background: #fffef2;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease 0.05s;
}

.mobile-menu-overlay.active .mobile-menu-header {
    transform: translateY(0);
    opacity: 1;
}

.mobile-logo {
    height: 24px;
    transition: transform 0.2s ease;
}

.mobile-logo:hover {
    transform: scale(1.05);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-content {
    padding: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-content {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-item {
    display: block;
    padding: 0.8rem 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    transform: translateX(20px);
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-menu-item {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-overlay.active .mobile-menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-item:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-menu-item:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-item:hover {
    color: #00aeef;
    transform: translateX(5px);
    background: rgba(0, 174, 239, 0.05);
    padding-left: 1rem;
}

.mobile-login {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.3s;
}

.mobile-menu-overlay.active .mobile-login {
    transform: translateY(0);
    opacity: 1;
}

/* Jumbo Hero Section - Barclays Style */
.hero {
    padding: 4rem 0;
    background: #fffef2;
}

.hero .breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.hero .breadcrumb a {
    color: #00aeef;
    text-decoration: none;
}

.hero .breadcrumb a:hover {
    text-decoration: underline;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    font-weight: normal;
    color: #00395d;
    font-family: "Expert Sans Light", "Trebuchet MS", Arial, Verdana, sans-serif;
    margin: 0;
    line-height: 1.2;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
}

.hero-title::before {
    background-color: #00aeef;
    border: 2px solid #00aeef;
    border-radius: 10px;
    content: "";
    display: inline-block;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-top: 1rem;
    max-width: 600px;
}

.jumbo {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden
}

/* Breadcrumb positioned over image */
.jumbo-breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.jumbo-breadcrumb-body {
    padding: 1rem;
}

.jumbo-breadcrumb .breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
    border-radius: 4px;
}

.jumbo-breadcrumb .breadcrumb li {
    display: inline;
    font-size: 0.9rem;
    color: #333;
}

.jumbo-breadcrumb .breadcrumb a {
    color: #00aeef;
    text-decoration: none;
    margin-left: 0.5rem;
}

.jumbo-breadcrumb .breadcrumb a:hover {
    text-decoration: underline;
}

/* Image with aspect ratio */
.jumbo .jumbo-media {
    aspect-ratio: 3 / 1;
    display: block;
    max-height: 534px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.jumbo img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0 none;
}

/* Content body with negative margin - KEY TECHNIQUE */
.jumbo-body {
    margin-top: -72px;
    width: 100%;
    padding-top: 0;
}

/* Container fluid */
.container-fluid {
    margin-left: auto;
    margin-right: auto;
    min-width: 280px;
}

/* Row */
.row {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
}

/* Content area */
.jumbo-content {
    padding-top: 30px;
    margin-left: 12.5%;
    background-color: #fff;
    width: 75%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    min-height: 1px;
}

.jumbo-col {
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    min-height: 1px;
}

.col-content {
    width: 66.66%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    min-height: 1px;
}

.aperture-left {
    padding: 2rem;
}

.jumbo-title {
    font-size: 2.5rem;
    font-weight: normal;
    color: #00395d;
    font-family: "Expert Sans Light", "Trebuchet MS", Arial, Verdana, sans-serif;
    position: relative;
    padding-left: 1.5rem;
    margin: 0;
    line-height: 1.2;
}

.jumbo-title::before {
    background-color: #00aeef;
    border: 2px solid #00aeef;
    border-radius: 10px;
    content: "";
    display: inline-block;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    z-index: 2;
}

/* Content Section */
.content-section {
    padding: 3rem 0;
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
    align-items: stretch; /* Ensure all cards have equal height */
}

.service-card {
    max-width: 440px;
    width: 100%;
    background: #faffe8;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push button to the bottom */
    min-height: 450px; /* Minimum height to ensure uniformity, adjust as needed */
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card h2 {
    font-size: 1.875rem;
    font-family: "Expert Sans Light", "Trebuchet MS", Arial, Verdana, sans-serif;
    font-weight: 100;
    line-height: 1.34;
    letter-spacing: 0;
    color: #00395d;
    margin-bottom: 1rem;
}

.service-card p {
    font-family: "Expert Sans Light", Verdana, sans-serif;
    margin-top: 0;
    color: #333;
    line-height: 1.5;
    margin-bottom: 1.875rem;
    word-wrap: break-word;
}

.service-card .disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    line-height: 1.4;
    font-style: italic;
}

.service-card ul {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.service-card li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
}

.service-card li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: #00aeef;
}

.service-card .btn {
    margin-top: auto; /* Push button to the bottom */
    align-self: center; /* Center the button horizontally */
    width: 100%; /* Ensure button takes full width for consistency */
    text-align: center;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 170px;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(242, 251, 254, 0.5);
    border-radius: 8px;
    border-left: 4px solid #00aeef;
}

.form-intro p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.form-intro a {
    color: #00aeef;
    text-decoration: none;
    font-weight: 500;
}

.form-intro a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label,
.checkbox-group legend {
    font-weight: normal;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00aeef;
    box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.1);
}

.checkbox-group {
    border: none;
    padding: 0;
}

.checkbox-options {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.4;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.checkbox-text {
    white-space: nowrap;
    overflow: visible;
}

.checkbox-links {
    color: #00aeef;
    text-decoration: none;
    display: inline;
    transition: color 0.2s ease;
}

.checkbox-links:hover {
    text-decoration: underline;
}

.submit-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.form-disclaimer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.form-disclaimer p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Legal Section */
.legal-section {
    padding: 40px 0;
    background: #faffe8;
}

.legal-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.legal-heading {
    text-align: center;
    margin-bottom: 30px;
}

.legal-heading h2 {
    font-size: 2.25rem;
    font-family: "Expert Sans Light", "Trebuchet MS", Arial, Verdana, sans-serif;
    font-weight: 100;
    line-height: 1.28;
    letter-spacing: -0.25px;
    color: #00395d;
    margin: 0 0 60px;
}

.legal-content {
    width: 100%;
}

.legal-content ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

.legal-item {
    margin-bottom: 20px;
}

.legal-item p {
    color: #333;
    font-family: "Expert Sans Light", Verdana, sans-serif;
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 1.25rem;
}

.legal-item sup a {
    color: #00aeef;
    text-decoration: none;
}

.legal-item sup a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #fff;
    padding: 3rem 0;
    border-top: 1px solid #e5e5e5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a {
    color: #00aeef;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

/* Footer Legal Section */
.footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.footer-disclaimer {
    margin-top: 1.5rem;
}

.footer-disclaimer p {
    font-family: "Expert Sans Light", Verdana, sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sponsors {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.sponsor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease;
}

.sponsor-item:hover {
    transform: translateY(-2px);
}

.sponsor-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.sponsor-link:hover {
    opacity: 0.8;
}

.sponsor-logo {
    max-width: 150px;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: filter 0.2s ease;
}

.sponsor-logo:hover {
    filter: brightness(1.1);
}

/* Adaptive Images */
picture {
    display: block;
}

picture img {
    display: block;
    width: 100%;
    height: auto;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #00395d;
    color: #fff;
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    color: #fff;
}

.cookie-text p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
    color: #00aeef;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cookie-text a:hover {
    text-decoration: underline;
    color: #7fdbff;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-accept {
    background: #00aeef;
    color: #fff;
}

.btn-accept:hover {
    background: #0099d4;
}

.btn-settings {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ul-lists {
    padding-left: 20px;
}

/* Error Message Styles */
.error-message {
    display: none;
    color: #ff0000;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Loader Styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #00aeef;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: relative;
    margin: 0;
}

/* Responsive Design */
@media (min-width: 1440px) {
    .jumbo .jumbo-media {
        height: 470px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .container-fluid {
        margin-left: 24px;
        margin-right: 24px;
    }

    .jumbo-content {
        margin-left: 0;
        width: 100%;
    }

    .col-content {
        width: 100%;
        float: none;
    }

    .jumbo-title {
        font-size: 2.2rem;
    }

    .jumbo-body {
        margin-top: 0;
        padding-top: 20px;
    }

    .jumbo-breadcrumb {
        display: none;
    }

    .form-container {
        padding-top: 90px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 797px) {
    .form-container {
        padding-top: 130px;
    }
}

@media (max-width: 767px) {
    .jumbo .jumbo-media {
        aspect-ratio: 16 / 9;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 1rem;
    }

    .btn-cookie {
        flex: 1;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        max-width: 100%;
        padding: 1.5rem;
        min-height: 400px; /* Adjusted for smaller screens */
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        padding-left: 1rem;
    }

    .hero-title::before {
        width: 4px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .logo a span:nth-child(2) {
        display: none;
    }

    .logo a span:first-child img {
        height: 24px;
    }

    .sponsor-logo {
        max-width: 100px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .container-fluid {
        margin-left: 13px;
        margin-right: 13px;
    }

    .row {
        margin-left: -7px;
        margin-right: -7px;
        padding-left: 7px;
        padding-right: 7px;
    }

    .jumbo-content,
    .jumbo-col,
    .col-content {
        padding-left: 7px;
        padding-right: 7px;
    }

    .jumbo-title {
        font-size: 2rem;
        padding-left: 1rem;
    }

    .jumbo-title::before {
        width: 4px;
    }

    .aperture-left {
        padding: 1.5rem;
    }

    .footer-links {
        gap: 2rem;
    }

    .sponsors {
        gap: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .checkbox-options {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .checkbox-label {
        font-size: 0.85rem;
    }

    .checkbox-text {
        white-space: normal;
    }

    .legal-section {
        padding: 60px 0;
    }

    .legal-heading h2 {
        margin-bottom: 60px;
    }

    .legal-item p {
        margin-bottom: 1.875rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .aperture-left {
        padding: 0;
    }

    .container {
        padding: 0 0.5rem;
    }

    .jumbo-title {
        font-size: 1.8rem;
    }

    .form-container {
        padding-top: 50px;
    }

    .form-intro {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .form-intro p {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
        min-height: 350px; /* Adjusted for very small screens */
    }

    .service-card h2 {
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .service-card .disclaimer {
        font-size: 0.8rem;
    }

    .mobile-menu {
        width: 100%;
    }

    .mobile-menu-item {
        font-size: 1.1rem;
        padding: 1rem 0;
    }

    .sponsors {
        gap: 1.5rem;
    }

    .sponsor-logo {
        max-width: 80px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .jumbo-content {
        padding-top: 0;
    }

    .checkbox-label {
        font-size: 0.8rem;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-cookie {
        width: 100%;
    }

    .footer-disclaimer p {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 360px) {
    .checkbox-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 322px) {
    .form-container {
        padding-top: 100px;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Animation keyframes */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-hero .hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.success-icon {
    margin-bottom: 24px;
}

.success-icon svg {
    animation: scaleIn 0.5s ease-out;
}

.button-container {
    margin-top: 32px;
}

.thanks-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-block {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-block h2 {
    color: #2c3e50;
    margin-bottom: 16px;
    font-size: 24px;
}

.info-list, .contact-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.info-list li, .contact-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.contact-list li {
    display: flex;
    align-items: center;
}

.contact-list .icon {
    margin-right: 12px;
    color: #4CAF50;
}

.contact-block {
    background: #e8f5e9;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .thanks-hero {
        padding: 40px 0;
    }

    .info-content {
        grid-template-columns: 1fr;
    }

    .info-block {
        padding: 20px;
    }
}