/**
 * EcoClave Energía - Main Stylesheet
 * Modern, clean design for energy efficiency landing page
 */

/* ========================================
   CSS VARIABLES
   ======================================== */
   :root {
    /* Primary Green Theme - Exact colors from screenshot */
    --primary-green: #7CB342;  /* The exact green from the screenshot */
    --primary-green-dark: #558B2F;
    --primary-green-light: #9CCC65;
    --accent-green-bg: #F1F8E9;  /* Very light green background */

    /* Dark Blue - From screenshot subheading */
    --primary-blue: #1565C0;  /* Dark blue for subheadings */
    --accent-blue-light: #1976D2;
    --dark-navy: #263238;  /* Very dark blue/navy for footer */

    /* Background & Text */
    --light-bg: #F5F5F5;
    --lighter-bg: #FAFAFA;
    --white: #FFFFFF;
    --dark-text: #212121;  /* True black for main headings */
    --light-text: #6B7280;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: white;
    width: 100%;
    max-width: 100vw;
}

/* Prevent all sections from overflowing */
section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    /* overflow-x: hidden; ← REMOVE THIS - it breaks sticky nav */
}

/* Nav container is special - no overflow */
nav .container {
    overflow: visible; /* ← Explicitly allow overflow for nav */
}

/* Ensure text doesn't cause overflow */
h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

/* Images and media should never overflow */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* ========================================
   NAVIGATION - COMPLETE REPLACEMENT
   ======================================== */
   nav {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    width: 100%;
}

nav .container {
    max-width: none;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

nav .logo {
    flex-shrink: 0;
}

nav .logo img {
    height: auto;
    width: 200px;
    display: block;
}

/* Desktop Menu - Moved to right side */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

/* Nav CTA Buttons Container */
.nav-cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

/* Contact Button - Secondary style */
.contact-button {
    background: transparent;
    color: var(--primary-green);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    border: 2px solid var(--primary-green);
}

.contact-button:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* Primary CTA Button */
nav .cta-button {
    background: var(--primary-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

nav .cta-button:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
}

/* Hamburger - Hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark-text);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu - Hidden by default */
.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.mobile-menu li {
    margin: 0;
}

.mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    background: var(--accent-green-bg);
    color: var(--primary-green);
}

.mobile-menu .mobile-cta {
    background: var(--primary-green);
    color: white;
    margin: 0.5rem 2rem;
    border-radius: 8px;
    text-align: center;
}

.mobile-menu .mobile-cta:hover {
    background: var(--primary-green-dark);
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    nav .container {
        padding: 0.75rem 1rem;
        display: flex !important;
        flex-direction: row !important; /* Force horizontal */
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important; /* Prevent wrapping */
        width: 100%;
    }

    /* Logo on left */
    nav .logo {
        flex: 0 0 auto; /* Don't grow or shrink */
        display: flex;
        align-items: center;
    }

    nav .logo img {
        width: 120px; /* Smaller on mobile */
        height: auto;
    }

    /* Hamburger on right */
    .hamburger {
        display: flex !important;
        flex: 0 0 auto; /* Don't grow or shrink */
    }

    /* Hide desktop menu */
    .nav-menu {
        display: none !important;
    }

    /* Hide desktop CTA buttons */
    .nav-cta-buttons {
        display: none !important;
    }
}

/* ========================================
   ADMIN/PRO LINK STYLES
   ======================================== */

/* Desktop pro link */
.pro-link {
    color: var(--primary-green) !important;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.pro-link:hover {
    background: var(--accent-green-bg);
    color: var(--primary-green-dark) !important;
}

.pro-link svg {
    opacity: 0.8;
}

/* Mobile admin link */
.mobile-admin {
    color: var(--primary-green) !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    padding: 12px 20px !important;
}

.mobile-admin:hover {
    background: var(--accent-green-bg) !important;
    color: var(--primary-green-dark) !important;
}

.menu-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 12px 20px;
    list-style: none;
}

/* ========================================
   GENERAL CTA BUTTON STYLES
   ======================================== */
.cta-large,
.cta-button {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
    text-transform: none;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.cta-large:hover,
.cta-button:hover {
    background: #558B2F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

/* Submit button inherits CTA styles */
.submit-button {
    background: var(--primary-green);
    color: white;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.submit-button:hover {
    background: #558B2F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

/* ========================================
   HERO SECTION
   ======================================== */
   .hero-content-section {
    background-image:
        linear-gradient(180deg, rgba(241, 248, 233, 0.75) 0%, rgba(249, 251, 231, 0.75) 50%, rgba(255, 253, 231, 0.75) 100%),
        url('../assets/attic-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 20px;
    text-align: center;
    width: 100%;
    overflow-x: hidden;
}

.hero-content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    width: 280px;
    max-width: 90%;
    height: auto;
    display: inline-block;
}

.hero-content-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-content-section h1 .highlight {
    color: var(--primary-green);
    font-weight: 800;
}

.hero-content-section .subheadline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-content-section .supporting-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-content-section .cta-large {
    padding: 20px 50px;
    font-size: 1.25rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content-section .cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.5);
}

/* ========================================
   TRUST BADGES
   ======================================== */
.trust-badges {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #E5E7EB;
    width: 100%;
}

.trust-badges .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
}

.trust-badge::before {
    content: "✓";
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: bold;
}

/* ========================================
   SECTIONS - GENERAL
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-text);
}

/* ========================================
   ELIGIBILITY CHECK SECTION - NO BACKGROUND IMAGE
   ======================================== */
   .eligibility-check {
    background: white;
    padding: 80px 20px;
}

.eligibility-check .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.eligibility-check .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.eligibility-check .section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.eligibility-check .section-header p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.eligibility-check-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.eligibility-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
}

.eligibility-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--accent-green-bg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.eligibility-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.15);
    border-color: var(--primary-green-light);
}

.eligibility-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.eligibility-box ul {
    list-style: none;
    padding: 0;
}

.eligibility-box ul li {
    padding: 0.75rem 0;
    color: var(--dark-text);
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.eligibility-box ul li:last-child {
    border-bottom: none;
}

.eligibility-box ul li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .eligibility-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .eligibility-check {
        padding: 60px 20px;
    }

    .eligibility-check .section-header h2 {
        font-size: 1.8rem;
    }

    .eligibility-check .section-header p {
        font-size: 1rem;
    }

    .eligibility-check-content-wrapper {
        padding: 0;
    }

    .eligibility-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .eligibility-box h3 {
        font-size: 1.3rem;
    }

    .eligibility-box ul li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .eligibility-check {
        padding: 50px 15px;
    }

    .eligibility-box {
        padding: 1.75rem 1.25rem;
    }

    .eligibility-box h3 {
        font-size: 1.2rem;
    }

    .eligibility-box ul li {
        font-size: 0.9rem;
    }
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
    background: linear-gradient(180deg, #F1F8E9 0%, #F9FBE7 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--primary-green);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.15);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* ========================================
   CAE FINANCING SECTION - CENTERED CARD
   ======================================== */
   .cae-financing {
    background: var(--lighter-bg);
    padding: 80px 20px;
}

.cae-financing .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Centered content card */
.cae-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cae-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.cae-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cae-intro {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cae-highlight {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(30, 136, 229, 0.08);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.cae-points {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.cae-points li {
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--dark-text);
    line-height: 1.7;
    position: relative;
    padding-left: 2rem;
}

.cae-points li::before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

/* Featured Circle Image within CAE Section */
.cae-financing .featured-circle-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.cae-financing .featured-circle-image img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 8px solid var(--accent-green-bg);
}

/* Responsive */
@media (max-width: 768px) {
    .cae-content {
        padding: 2.5rem 2rem;
    }

    .cae-content h2 {
        font-size: 1.75rem;
    }

    .cae-content h3 {
        font-size: 1.2rem;
    }

    .cae-intro {
        font-size: 1rem;
    }

    .cae-points li {
        font-size: 1rem;
    }

    .cae-financing .featured-circle-image {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .cae-financing .featured-circle-image img {
        width: 300px;
        height: 300px;
        border-width: 6px;
    }
}

@media (max-width: 480px) {
    .cae-content {
        padding: 2rem 1.5rem;
    }

    .cae-content h2 {
        font-size: 1.6rem;
    }

    .cae-content h3 {
        font-size: 1.1rem;
    }

    .cae-intro,
    .cae-points li {
        font-size: 0.95rem;
    }

    .cae-financing .featured-circle-image {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .cae-financing .featured-circle-image img {
        width: 250px;
        height: 250px;
        border-width: 5px;
    }
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    background: var(--lighter-bg);
    padding: 40px 20px 80px 20px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: var(--light-text);
    line-height: 1.7;
}

/* ========================================
   VISUAL CONTENT (Benefits with image)
   ======================================== */
.visual-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.visual-benefits {
    list-style: none;
    padding: 0;
}

.visual-benefits li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.visual-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive for visual content */
@media (max-width: 768px) {
    .visual-content {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FORM ROW (for side-by-side form fields)
   ======================================== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.required {
    color: #EF4444;
}

.privacy-text {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(239, 246, 255, 0.5);
    border-radius: 8px;
}



/* ========================================
   FORM SECTION
   ======================================== */
.form-section {
    background: linear-gradient(180deg, #F1F8E9 0%, #F9FBE7 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--accent-green-bg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    min-height: 3.5rem;
}

/* Radio button labels don't need min-height */
.radio-option label {
    min-height: auto;
    display: inline;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-option input[type="radio"] {
    width: auto;
    margin: 0;
}

.submit-button {
    width: 100%;
    background: var(--primary-green);
    color: white;
    padding: 18px 32px;
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
    font-family: 'Poppins', sans-serif;
}

.submit-button:hover {
    background: #558B2F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

/* Alert Box */
.alert {
    display: none;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.alert.success {
    background: #D1FAE5;
    color: #065F46;
    border: 2px solid #10B981;
}

.alert.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 2px solid #EF4444;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background: var(--lighter-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-blue);
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(124, 179, 66, 0.05);
}

.faq-icon {
    transition: transform 0.3s;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
    color: var(--light-text);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    transition: max-height 0.5s ease-in;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--dark-navy);
    color: white;
    padding: 3rem 0 1rem;
    width: 100%;
}

/* Override container max-width for footer */
footer .container {
    max-width: 100%;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /* All equal width */
    gap: 3rem;
    padding: 3rem 0;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 2rem;
    }
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-green-light);
    font-weight: 600;
}

.footer-section p {
    color: #D1D5DB;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: #D1D5DB;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-green-light);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9CA3AF;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 180px;
    height: auto;
}

/* Footer Legal Links Wrapper */
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-legal .cookie-settings-link {
    background: none;
    border: none;
    color: inherit;
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: inline;
    line-height: inherit;
    text-align: left;
}

.footer-legal .cookie-settings-link:hover {
    text-decoration: underline;
}

.footer-legal .cookie-settings-link:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-links a i {
    font-size: 1.3rem;
}

.footer-social a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* ========================================
   LARGE DESKTOP - 1440px+
   Keep narrow for readability
   ======================================== */
   @media (min-width: 1441px) {
    .container {
        max-width: 1200px;
    }
}

/* ========================================
   MEDIUM DESKTOP - 1200px
   ======================================== */
@media (max-width: 1200px) {
    .container {
        max-width: 1100px;
    }

    .hero-content-section h1 {
        font-size: 3rem;
    }

    .hero-content-section .subheadline {
        font-size: 1.4rem;
    }

    .hero-content-section .supporting-text {
        font-size: 1.1rem;
    }
}

/* ========================================
   TABLETS LANDSCAPE - 1024px
   Make it WIDER and use 2-column grids
   ======================================== */
@media (max-width: 1024px) {
    /* Wider container - use 95% of screen */
    .container {
        max-width: 95%;
        padding: 0 30px;
    }

    nav .container {
        padding: 1rem 30px;
    }

    /* All section containers go wider */
    .hero-content-section .container,
    .eligibility-check .container,
    .benefits .container,
    .how-it-works .container,
    .stats .container,
    .cae-financing .container,
    .contact-form .container,
    .faq .container {
        max-width: 95%;
        padding: 0 40px;
    }

    /* Font sizes */
    .hero-content-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content-section .subheadline {
        font-size: 1.25rem;
    }

    .hero-content-section .supporting-text {
        font-size: 1.05rem;
        max-width: 700px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* 2-COLUMN GRIDS on tablet landscape */
    .eligibility-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Wider content boxes */
    .eligibility-check-content-wrapper {
        max-width: 100%;
        padding: 3rem 2.5rem;
    }

    .cae-content {
        max-width: 100%;
        padding: 3rem 2.5rem;
    }

    .form-container {
        max-width: 100%;
        padding: 3rem 0.5rem;
    }

    /* CAE Financing */
    .cae-content h2 {
        font-size: 2rem;
    }

    .cae-content h3 {
        font-size: 1.3rem;
    }
}

/* ========================================
   TABLETS PORTRAIT - 768px
   Full width, single column
   ======================================== */
@media (max-width: 768px) {
    /* Full width on tablets */
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    /* Navigation */
    nav .container {
        flex-direction: column;
        padding: 1.5rem 15px;
        gap: 1rem;
    }

    nav .logo img {
        width: 160px;
    }

    nav .cta-button {
        display: none; /* Hide CTA button on mobile */
    }

    /* Hero */
    .hero-content-section {
        padding: 3.5rem 10px;
    }

    .hero-content-section .container {
        padding: 0 10px;
    }

    .hero-logo img {
        width: 200px;
    }

    .hero-content-section h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }

    .hero-content-section .subheadline {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .hero-content-section .supporting-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-content-section .cta-large {
        font-size: 1.05rem;
        padding: 16px 32px;
    }

    /* Trust badges */
    .trust-badges {
        padding: 2.5rem 15px;
    }

    .trust-badge {
        font-size: 0.9rem;
        padding: 0.85rem 1.25rem;
    }

    /* All sections */
    section {
        padding: 60px 25px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Eligibility */
    .eligibility-check {
        padding: 60px 10px;
    }

    .eligibility-check-content-wrapper {
        max-width: 100%;
        padding: 2.5rem 0.25rem;
    }

    .eligibility-content {
        grid-template-columns: 1fr; /* Single column */
        gap: 1.5rem;
    }

    .eligibility-box {
        max-width: 100%;
    }

    .eligibility-box h3 {
        font-size: 1.3rem;
    }

    .eligibility-box ul li {
        font-size: 0.95rem;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 2rem;
    }

    .visual-benefits li {
        font-size: 1rem;
    }

    /* Steps */
    .steps {
        grid-template-columns: 1fr; /* Single column */
        gap: 2rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 2rem;
    }

    /* CAE Financing */
    .cae-content {
        max-width: 100%;
        padding: 2.5rem 2rem;
    }

    .cae-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .cae-content h3 {
        font-size: 1.2rem;
    }

    .cae-intro {
        font-size: 1rem;
    }

    /* Form */
    .form-container {
        max-width: 100%;
        padding: 2.5rem 2rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Mobile - Full width like footer */
@media (max-width: 768px) {
    /* Remove side padding from sections */
    section {
        padding: 60px 0;
    }

    /* Container gets the padding instead */
    .container {
        padding: 0 20px;
    }

    /* Hero - full width */
    .hero-content-section {
        padding: 3.5rem 0;
    }

    .hero-content-section .container {
        padding: 0 20px;
    }

    /* Trust badges */
    .trust-badges {
        padding: 2.5rem 0;
    }

    .trust-badges .container {
        padding: 0 20px;
    }

    /* Eligibility - full background */
    .eligibility-check {
        padding: 60px 0;
    }

    .eligibility-check .container {
        padding: 0 20px;
    }

    /* Benefits */
    .benefits {
        padding: 60px 0;
    }

    .benefits .container {
        padding: 0 20px;
    }

    /* How it works */
    .how-it-works {
        padding: 30px 0 60px 0;
    }

    .how-it-works .container {
        padding: 0 20px;
    }

    /* Stats */
    .stats {
        padding: 60px 0;
    }

    .stats .container {
        padding: 0 20px;
    }

    /* CAE Financing */
    .cae-financing {
        padding: 60px 0;
    }

    .cae-financing .container {
        padding: 0 20px;
    }

    /* Form */
    .contact-form {
        padding: 60px 0;
    }

    .contact-form .container {
        padding: 0 15px;
    }

    /* FAQ */
    .faq {
        padding: 60px 0;
    }

    .faq .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 15px;
    }

    .how-it-works {
        padding-top: 25px;
    }

    .hero-content-section,
    .trust-badges,
    .eligibility-check,
    .benefits,
    .how-it-works,
    .stats,
    .cae-financing,
    .contact-form,
    .faq {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-content-section .container,
    .trust-badges .container,
    .eligibility-check .container,
    .benefits .container,
    .how-it-works .container,
    .stats .container,
    .cae-financing .container,
    .contact-form .container,
    .faq .container {
        padding: 0 15px;
    }
}

/* ========================================
   SMALL MOBILE - 480px
   ======================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    nav .container {
        padding: 1.25rem 12px;
    }

    nav .logo img {
        width: 140px;
    }

    /* Hero */
    .hero-content-section {
        padding: 3rem 8px;
    }

    .hero-content-section .container {
        padding: 0 8px;
    }

    .hero-logo img {
        width: 160px;
    }

    .hero-content-section h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-content-section .subheadline {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }

    .hero-content-section .supporting-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }

    .hero-content-section .cta-large {
        font-size: 1rem;
        padding: 14px 28px;
    }

    /* Trust badges */
    .trust-badges {
        padding: 2rem 12px;
    }

    .trust-badge {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

    /* Sections */
    section {
        padding: 50px 12px;
    }

    .section-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Eligibility */
    .eligibility-check {
        padding: 50px 8px;
    }

    .eligibility-check-content-wrapper {
        padding: 2rem 0.1rem;
    }

    .eligibility-box {
        padding: 1.5rem 0.85rem;
    }

    .eligibility-box h3 {
        font-size: 1.2rem;
    }

    .eligibility-box ul li {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }

    /* Benefits */
    .visual-benefits li {
        font-size: 0.95rem;
    }

    .benefit-card {
        padding: 1.75rem 1.25rem;
    }

    .benefit-card h3 {
        font-size: 1.25rem;
    }

    .benefit-card p {
        font-size: 0.95rem;
    }

    /* Steps */
    .step {
        padding: 1.75rem 1.25rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step h3 {
        font-size: 1.25rem;
    }

    .step p {
        font-size: 0.95rem;
    }

    /* Stats */
    .stat {
        padding: 1.75rem 1.25rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    /* CAE Financing */
    .cae-content {
        padding: 2rem 1.5rem;
    }

    .cae-content h2 {
        font-size: 1.6rem;
    }

    .cae-content h3 {
        font-size: 1.1rem;
    }

    .cae-intro {
        font-size: 0.95rem;
    }

    .cae-points li {
        font-size: 0.95rem;
    }

    /* Form */
    .form-container {
        padding: 2rem 0.25rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 12px;
    }

    .submit-button {
        font-size: 1rem;
        padding: 14px 28px;
    }

    /* Form navigation buttons - make them more compact on mobile */
    .submit-button[style*="flex: 0"] {
        padding: 14px 20px !important;
        min-width: auto !important;
    }

    .submit-button[style*="flex: 1"] {
        padding: 14px 24px !important;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.95rem;
        padding: 1.1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/* ========================================
   EXTRA SMALL - 375px
   ======================================== */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }

    .hero-content-section h1 {
        font-size: 1.6rem;
    }

    .hero-content-section .subheadline {
        font-size: 0.95rem;
    }

    .hero-content-section .supporting-text {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .eligibility-check-content-wrapper,
    .cae-content,
    .form-container {
        padding: 1.75rem 1.25rem;
    }

    .eligibility-box h3,
    .benefit-card h3,
    .step h3 {
        font-size: 1.15rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
    display: none;
}
/* ========================================
   CTA SECTIONS
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #F1F8E9 0%, #F9FBE7 100%);
    padding: 60px 20px;
    text-align: center;
}

.cta-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.cta-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-characters {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-end;
}

.cta-characters img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.cta-characters img:hover {
    transform: translateY(-10px);
}

.cta-text {
    text-align: center;
    max-width: 900px;
}

.cta-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 20px;
    }

    .cta-content-wrapper {
        gap: 1.5rem;
    }

    .cta-characters {
        gap: 1rem;
    }

    .cta-characters img {
        width: 180px;
    }

    .cta-section h3 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-large {
        padding: 16px 36px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .cta-characters {
        gap: 0.5rem;
    }

    .cta-characters img {
        width: 130px;
    }

    .cta-section h3 {
        font-size: 1.4rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }
}

/* ========================================
   COOKIE CONSENT BANNER & MODAL
   ======================================== */

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 1.5rem;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #212121;
    font-family: 'Montserrat', sans-serif;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    white-space: nowrap;
}

.cookie-accept {
    background: #7CB342;
    color: white;
}

.cookie-accept:hover {
    background: #558B2F;
    transform: translateY(-2px);
}

.cookie-reject {
    background: #E5E7EB;
    color: #374151;
}

.cookie-reject:hover {
    background: #D1D5DB;
}

.cookie-settings {
    background: transparent;
    color: #7CB342;
    border: 2px solid #7CB342;
}

.cookie-settings:hover {
    background: #F1F8E9;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.cookie-modal-header h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #212121;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6B7280;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.cookie-close:hover {
    color: #212121;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-category h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #212121;
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #D1D5DB;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: #7CB342;
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.cookie-modal-footer a {
    color: #7CB342;
    text-decoration: none;
    font-weight: 500;
}

.cookie-modal-footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-modal-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .cookie-modal-footer button {
        width: 100%;
    }
}
