
        /* Universal Box-Sizing for consistent layout behavior */
        *, *::before, *::after {
            box-sizing: border-box;
        }

        /* --- GLOBAL & ROOT DEFINITIONS (Shared across all sections) --- */
        :root {
            --brand-green-dark: #1e4620;
            --brand-green-accent: #2a9d8f;
            --brand-green-mid: #81c784;
            --brand-green-light: #e8f5e9;
            --glow-color: rgba(129, 199, 132, 0.5);
            --text-on-dark: #fbfdfb;
            --text-primary: #1a3b1a;
            --text-secondary: #36533c;
            --bg-light: #fbfdfb;
            --border-color: #e0e6e2;
            --animation-duration: 0.6s;
            /* For card glow - these variables are set dynamically by JS */
            --x: 50%;
            --y: 50%;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-primary);
            margin: 0;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .font-playfair {
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.02em;
        }

        /* --- GLOBAL BUTTON STYLES (Shared across all sections) --- */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.25rem;
            border-radius: 0;
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.3px;
            font-size: 1rem;
            color: #fff;
            background-image: linear-gradient(110deg, var(--brand-green-accent) 0%, var(--brand-green-mid) 100%);
            box-shadow: 0 10px 30px -5px rgba(42, 157, 143, 0.4), 0 0 15px var(--glow-color) inset;
            border: none;
            text-decoration: none;
            cursor: pointer;
            transition: all var(--animation-duration) cubic-bezier(0.2, 0.8, 0.2, 1);
            background-size: 250% auto;
            outline: none;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .btn-primary:hover::before,
        .btn-primary:focus::before {
            left: 100%;
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background-position: right center;
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 18px 45px -8px rgba(42, 157, 143, 0.5), 0 0 20px var(--glow-color) inset;
            outline: none;
        }
        
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.25rem;
            border-radius: 0;
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.3px;
            font-size: 1rem;
            color: var(--brand-green-accent);
            background-color: transparent;
            border: 1px solid var(--brand-green-accent);
            transition: all var(--animation-duration) cubic-bezier(0.2, 0.8, 0.2, 1);
            outline: none;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .btn-secondary:hover,
        .btn-secondary:focus {
            background-color: var(--brand-green-light);
            color: var(--brand-green-dark);
            box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3);
            transform: translateY(-2px);
            outline: none;
        }

        .btn-arrow {
            width: 1.25rem;
            height: 1.25rem;
            transition: transform var(--animation-duration) cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .btn-primary:hover .btn-arrow,
        .btn-primary:focus .btn-arrow {
            transform: translateX(5px);
        }

        /* --- SECTION DIVIDER (Shared across all sections) --- */
        .section-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, var(--brand-green-accent) 0%, var(--brand-green-mid) 50%, var(--brand-green-accent) 100%);
            margin: 0 auto;
            box-shadow: 0 0 10px var(--glow-color);
            border: none;
        }

        /* --- GENERAL ANIMATIONS (Shared across all sections) --- */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s cubic-bezier(.2, .8, .2, 1), transform 1s cubic-bezier(.2, .8, .2, 1);
        }
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- ACCESSIBILITY: REDUCED MOTION (Shared across all sections) --- */
        @media (prefers-reduced-motion: reduce) {
            .btn-primary,
            .btn-primary::before,
            .btn-secondary,
            .btn-arrow,
            .hero-background,
            .hero-content-wrapper,
            .hero-heading,
            .hero-subheading,
            .usp-list li,
            .credibility-badges img,
            .listing-form-container,
            .listing-form-container::before,
            .form-group label,
            .form-group input,
            .form-group textarea,
            .form-group select,
            .form-step,
            .progress-fill,
            .radio-options input[type="radio"] + label,
            .checkbox-group input[type="checkbox"],
            #success-message-box,
            #trust-social-proof-section,
            .testimonial-card,
            .testimonial-card::before,
            .partner-logos img,
            .cta-card,
            .cta-card::before,
            .faq-item,
            .faq-item::before,
            .faq-indicator,
            .faq-content,
            .how-it-works-step,
            .how-it-works-step::before,
            .how-it-works-step::after,
            .eligibility-card,
            .eligibility-card::before,
            .fade-in-up {
                transition: none !important;
                animation: none !important;
            }
        }

        /* ==========================================================================
           SECTION: LIST LAND HERO (WITH EMBEDDED FORM) - #list-land-hero-section
           ========================================================================== */
        #list-land-hero-section {
            position: relative;
            width: 100vw;
            min-height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 0 0 0; /* Account for fixed header */
            box-sizing: border-box;
            background-color: var(--brand-green-dark); /* Fallback background */
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://placehold.co/1920x1080/1a3b1a/e8f5e9?text=Dynamic+Landscape'); /* Placeholder */
            background-size: cover;
            background-position: center center;
            z-index: 0;
            filter: brightness(0.6) contrast(1.1);
        }

        .hero-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(30, 70, 32, 0.7), rgba(30, 70, 32, 0.7));
            z-index: 1;
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            width: 100%;
            display: flex;
            flex-direction: column; /* Stack columns on mobile */
            gap: 3rem;
            padding: 3rem 2rem;
            box-sizing: border-box;
            align-items: center; /* Center content horizontally on mobile */
            text-align: center; /* Center text on mobile */
        }

        @media (min-width: 1024px) {
            .hero-content-wrapper {
                flex-direction: row; /* Side-by-side on desktop */
                gap: 5rem;
                padding: 4rem 2rem;
                /* FIX: Centered content horizontally on desktop */
                justify-content: center; /* Center the two columns */
                align-items: flex-start; /* Align items to top on desktop */
                text-align: left; /* Align text left on desktop */
            }
        }

        .hero-text-column {
            flex: 1;
            max-width: 600px;
            color: var(--text-on-dark);
        }

        .hero-eyebrow {
            color: var(--brand-green-light);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .hero-heading {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 0.5rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .hero-accent {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-green-mid) 0%, var(--brand-green-accent) 100%);
            margin: 1rem auto 1.5rem auto; /* Centered on mobile */
            border-radius: 6px;
            box-shadow: 0 0 15px var(--glow-color);
        }

        @media (min-width: 1024px) {
            .hero-accent {
                margin-left: 0;
                margin-right: auto;
            }
        }

        .hero-subheading {
            font-size: 1.25rem;
            line-height: 1.7;
            color: var(--brand-green-light);
            opacity: 0.9;
            max-width: 650px;
            margin: 0 auto 2rem auto; /* Centered on mobile */
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        @media (min-width: 1024px) {
            .hero-subheading {
                margin-left: 0;
                margin-right: auto;
            }
        }

        .usp-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
            text-align: center; /* Center on mobile */
        }

        @media (min-width: 1024px) {
            .usp-list {
                text-align: left;
            }
        }

        .usp-list li {
            display: flex;
            align-items: center;
            justify-content: center; /* Center on mobile */
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-on-dark);
        }

        @media (min-width: 1024px) {
            .usp-list li {
                justify-content: flex-start;
            }
        }

        .usp-list svg {
            width: 24px;
            height: 24px;
            color: var(--brand-green-mid);
            flex-shrink: 0;
        }

        .credibility-badges {
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        @media (min-width: 1024px) {
            .credibility-badges {
                flex-direction: row;
                justify-content: flex-start;
                flex-wrap: wrap;
            }
        }

        .credibility-badges img {
            max-height: 60px;
            width: auto;
            border-radius: 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .credibility-badges img:hover {
            transform: translateY(-5px);
        }

        .credibility-badges span {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            font-style: italic;
            text-align: center;
            max-width: 300px;
        }

        /* --- List Land Form Styles (Specific to this section) --- */
        .hero-form-column {
            flex: 1;
            max-width: 550px;
            width: 100%;
            position: relative;
        }

        .listing-form-container {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 0;
            padding: 2rem;
            box-shadow: 0 20px 50px -15px rgba(30, 70, 32, 0.3);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1.5px solid rgba(255, 255, 255, 0.9);
            position: relative;
            overflow: hidden;
            transition: all var(--animation-duration) ease;
        }

        .listing-form-container::before {
            content: '';
            position: absolute;
            top: var(--y, 50%);
            left: var(--x, 50%);
            transform: translate(-50%, -50%) scale(0);
            width: 350px;
            height: 350px;
            background-image: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
            z-index: 0;
            pointer-events: none;
        }

        .listing-form-container:hover::before {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .form-header {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .form-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .form-progress {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background-color: var(--brand-green-light);
            border-radius: 3px;
            margin-top: 0.5rem;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            width: 0%;
            background-color: var(--brand-green-accent);
            border-radius: 3px;
            transition: width 0.4s ease-in-out;
        }

        .form-step {
            display: none;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .form-step.active {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            position: absolute;
            top: 1rem;
            left: 1rem;
            color: var(--text-secondary);
            pointer-events: none;
            transition: all var(--animation-duration) ease;
            background-color: transparent;
            padding: 0 0.25rem;
            z-index: 1;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--brand-green-mid);
            border-radius: 0;
            background-color: var(--bg-light);
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            transition: border-color var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
            box-sizing: border-box;
            color: var(--text-primary);
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2336533c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 1.25rem;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--brand-green-accent);
            box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
        }

        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown):not([type="file"]) + label,
        .form-group textarea:focus + label,
        .form-group textarea:not(:placeholder-shown) + label,
        .form-group select:focus + label,
        .form-group select:not([value=""]) + label {
            top: -0.75rem;
            left: 0.75rem;
            font-size: 0.8rem;
            color: var(--brand-green-accent);
            background-color: var(--bg-light);
            padding: 0 0.25rem;
        }

        .form-group.file-upload-group label {
            position: static;
            transform: none;
            margin-bottom: 0.5rem;
            display: block;
            color: var(--text-primary);
            font-size: 1rem;
            font-weight: 600;
            padding: 0;
            background-color: transparent;
        }
        .form-group.file-upload-group input[type="file"] {
            border: 1px dashed var(--brand-green-mid);
            padding: 1rem;
            cursor: pointer;
            background-color: rgba(232, 245, 233, 0.3);
        }
        .form-group.file-upload-group input[type="file"]::file-selector-button {
            background-color: var(--brand-green-accent);
            color: white;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 0;
            cursor: pointer;
            margin-right: 1rem;
            transition: background-color 0.3s ease;
        }
        .form-group.file-upload-group input[type="file"]::file-selector-button:hover {
            background-color: var(--brand-green-dark);
        }
        .file-upload-info {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 0.5rem;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .area-input-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .area-input-group input {
            flex-grow: 1;
        }
        .area-input-group .area-unit-select {
            width: auto;
            flex-shrink: 0;
            padding-right: 2.5rem;
        }
        .area-input-group label {
            left: 1rem;
            right: auto;
            width: auto;
        }
        .area-input-group input:focus + label,
        .area-input-group input:not(:placeholder-shown) + label {
            left: 0.75rem;
        }

        .radio-group label {
            position: static;
            transform: none;
            margin-bottom: 0.5rem;
            display: block;
            color: var(--text-primary);
            font-size: 1rem;
            font-weight: 600;
            padding: 0;
            background-color: transparent;
        }
        .radio-options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .radio-options input[type="radio"] {
            display: none;
        }
        .radio-options input[type="radio"] + label {
            position: relative;
            top: auto;
            left: auto;
            padding: 0.75rem 1.25rem;
            border: 1px solid var(--brand-green-mid);
            border-radius: 0;
            background-color: var(--bg-light);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
            flex-grow: 1;
            text-align: center;
            white-space: nowrap;
        }
        .radio-options input[type="radio"]:checked + label {
            background-color: var(--brand-green-accent);
            color: white;
            border-color: var(--brand-green-accent);
            box-shadow: 0 4px 10px rgba(42, 157, 143, 0.2);
        }
        .radio-options input[type="radio"]:hover + label {
            border-color: var(--brand-green-accent);
            background-color: var(--brand-green-light);
        }
        .radio-options input[type="radio"]:focus-visible + label {
            outline: 2px solid var(--brand-green-accent);
            outline-offset: 2px;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        .checkbox-group input[type="checkbox"] {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border: 1px solid var(--brand-green-mid);
            border-radius: 3px;
            background-color: var(--bg-light);
            cursor: pointer;
            flex-shrink: 0;
            position: relative;
            transition: all 0.2s ease;
            margin-top: 0.2rem;
        }
        .checkbox-group input[type="checkbox"]:checked {
            background-color: var(--brand-green-accent);
            border-color: var(--brand-green-accent);
        }
        .checkbox-group input[type="checkbox"]:checked::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 6px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
        .checkbox-group input[type="checkbox"]:focus-visible {
            outline: 2px solid var(--brand-green-accent);
            outline-offset: 2px;
        }
        .checkbox-group label {
            position: static;
            transform: none;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
            padding: 0;
            background-color: transparent;
        }
        .checkbox-group label a {
            color: var(--brand-green-accent);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }
        .checkbox-group label a:hover {
            color: var(--brand-green-dark);
            text-decoration: underline;
        }

        .form-actions {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-top: 2rem;
        }
        .form-actions button {
            flex: 1;
        }
        .form-actions .btn-secondary {
            color: var(--text-secondary);
            border-color: var(--border-color);
        }
        .form-actions .btn-secondary:hover {
            background-color: var(--brand-green-light);
            border-color: var(--brand-green-mid);
            color: var(--text-primary);
        }

        .form-review-summary {
            background-color: rgba(232, 245, 233, 0.5);
            border: 1px solid var(--brand-green-light);
            border-radius: 0;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            max-height: 300px;
            overflow-y: auto;
        }
        .form-review-summary h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-top: 0;
            margin-bottom: 1rem;
            text-align: center;
        }
        .form-review-summary p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }
        .form-review-summary p strong {
            color: var(--text-primary);
            margin-right: 0.5rem;
        }
        .form-review-summary p:last-child {
            margin-bottom: 0;
        }

        /* Post-Submission Message Box (Global, but styled here) */
        #success-message-box {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--brand-green-dark);
            color: var(--text-on-dark);
            padding: 2rem;
            border-radius: 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            text-align: center;
            z-index: 1001;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
            max-width: 90vw;
        }
        #success-message-box.show {
            display: block;
            opacity: 1;
        }
        #success-message-box h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-top: 0;
            margin-bottom: 1rem;
            color: var(--brand-green-mid);
        }
        #success-message-box p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        #success-message-box .close-btn {
            background-color: var(--brand-green-accent);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        #success-message-box .close-btn:hover {
            background-color: var(--brand-green-mid);
        }

        /* ==========================================================================
           SECTION: TRUST & SOCIAL PROOF - #trust-social-proof-section
           ========================================================================== */
        #trust-social-proof-section {
            padding: 6rem 2rem;
            background-color: var(--bg-light);
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8f5e9' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            text-align: center;
        }

        .trust-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .trust-header {
            margin-bottom: 4rem;
        }

        .trust-eyebrow {
            color: var(--brand-green-accent);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }

        .trust-heading {
            font-family: 'Playfair Display', serif;
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 0.5rem 0;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .trust-accent {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-green-mid) 0%, var(--brand-green-accent) 100%);
            margin: 1rem auto 1.5rem auto;
            border-radius: 6px;
            box-shadow: 0 0 15px var(--glow-color);
        }

        .trust-hook {
            font-size: 1.25rem;
            line-height: 1.75;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.6);
            border-radius: 0;
            padding: 2rem;
            box-shadow: 0 10px 40px -10px rgba(42, 157, 143, 0.125);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1.5px solid rgba(255, 255, 255, 0.8);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: var(--y, 50%);
            left: var(--x, 50%);
            transform: translate(-50%, -50%) scale(0);
            width: 250px;
            height: 250px;
            background-image: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
            z-index: 0;
            pointer-events: none;
        }

        .testimonial-card:hover::before {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-16px) scale(1.05);
            box-shadow: 0 25px 50px -12px rgba(42, 157, 143, 0.25);
            border-color: var(--brand-green-mid);
        }

        .testimonial-quote {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            z-index: 1;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--brand-green-accent);
            flex-shrink: 0;
        }

        .author-info strong {
            display: block;
            font-weight: 700;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .author-info span {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .partner-logos {
            margin-top: 6rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem 4rem;
        }

        .partner-logos img {
            max-height: 80px;
            width: auto;
            filter: grayscale(100%) brightness(0.8);
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .partner-logos img:hover {
            filter: grayscale(0%) brightness(1);
            opacity: 1;
            transform: scale(1.05);
        }

        /* ==========================================================================
            SECTION: SECONDARY CTAS - #secondary-ctas-section
            ========================================================================== */
        #secondary-ctas-section {
            padding: 6rem 2rem;
            background-color: var(--bg-light);
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8f5e9' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            text-align: center;
        }

        .secondary-ctas-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .secondary-ctas-header {
            margin-bottom: 4rem;
        }

        .secondary-ctas-eyebrow {
            color: var(--brand-green-accent);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }

        .secondary-ctas-heading {
            font-family: 'Playfair Display', serif;
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 0.5rem 0;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .secondary-ctas-accent {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-green-mid) 0%, var(--brand-green-accent) 100%);
            margin: 1rem auto 1.5rem auto;
            border-radius: 6px;
            box-shadow: 0 0 15px var(--glow-color);
        }

        .secondary-ctas-hook {
            font-size: 1.25rem;
            line-height: 1.75;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        @media (min-width: 768px) {
            .cta-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .cta-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .cta-card {
            background: rgba(255, 255, 255, 0.6);
            border-radius: 0;
            padding: 2rem;
            box-shadow: 0 10px 40px -10px rgba(42, 157, 143, 0.125);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1.5px solid rgba(255, 255, 255, 0.8);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between; /* Push button to bottom */
            min-height: 280px; /* Ensure consistent card height */
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: var(--y, 50%);
            left: var(--x, 50%);
            transform: translate(-50%, -50%) scale(0);
            width: 250px;
            height: 250px;
            background-image: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
            z-index: 0;
            pointer-events: none;
        }

        .cta-card:hover::before {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .cta-card:hover {
            transform: translateY(-16px) scale(1.05);
            box-shadow: 0 25px 50px -12px rgba(42, 157, 143, 0.25);
            border-color: var(--brand-green-mid);
        }

        .cta-card .card-icon {
            /* Styles for the Font Awesome icon */
            font-size: 3rem; /* Adjust size as needed */
            color: var(--brand-green-accent); /* Icon color */
            margin-bottom: 0.75rem; /* Further reduced vertical padding below the icon */
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease; /* Add transition for hover effect */
        }

        .cta-card:hover .card-icon {
            transform: scale(1.1); /* Slightly enlarge icon on hover */
        }
        
        .cta-card .card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            line-height: 1.2;
            position: relative;
            z-index: 1;
            flex-grow: 1; /* Allow title to take up available space */
        }

        .cta-card .card-description {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 1.5rem; /* Space before button */
            position: relative;
            z-index: 1;
        }

        .cta-card .btn-primary {
            width: 100%; /* Full width button */
            justify-content: center; /* Center text in button */
            margin-top: auto; /* Push button to bottom */
        }
        /* ==========================================================================
            SECTION: FAQ - #faq-section
            ========================================================================== */
        #faq-section {
            padding: 6rem 2rem; /* Consistent section padding */
            background-color: var(--bg-light);
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8f5e9' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            text-align: center;
        }

        .faq-container {
            max-width: 1200px; /* Consistent max-width for content containers */
            margin: 0 auto;
        }

        .faq-header {
            margin-bottom: 4rem; /* Consistent spacing below header */
        }

        .faq-eyebrow {
            color: var(--brand-green-accent);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }

        .faq-heading {
            font-family: 'Playfair Display', serif;
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 0.5rem 0;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .faq-accent {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-green-mid) 0%, var(--brand-green-accent) 100%);
            margin: 1rem auto 1.5rem auto;
            border-radius: 6px;
            box-shadow: 0 0 15px var(--glow-color);
        }

        .faq-hook {
            font-size: 1.25rem;
            line-height: 1.75;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-list {
            margin-top: 4rem;
            text-align: left; /* Align questions left */
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.6);
            border-radius: 0; /* Consistent sharp corners */
            border: 1.5px solid var(--border-color);
            box-shadow: 0 10px 40px -10px rgba(42, 157, 143, 0.1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            overflow: hidden;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .faq-item:last-child {
            margin-bottom: 0;
        }

        /* Aurora Glow Effect for FAQ items */
        .faq-item::before {
            content: '';
            position: absolute;
            top: var(--y, 50%);
            left: var(--x, 50%);
            transform: translate(-50%, -50%) scale(0);
            width: 250px;
            height: 250px;
            background-image: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
            z-index: 0;
            pointer-events: none;
        }

        .faq-item:hover::before {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .faq-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px -15px rgba(42, 157, 143, 0.2);
            border-color: var(--brand-green-mid);
        }

        .faq-question-button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 1.5rem 2rem;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            position: relative;
            z-index: 1;
            font-family: 'Manrope', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            transition: color 0.3s ease;
        }

        .faq-question-button:hover {
            color: var(--brand-green-accent);
        }

        .faq-indicator {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            color: var(--brand-green-accent);
            transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            margin-left: 1rem;
        }

        .faq-item.active .faq-indicator {
            transform: rotate(45deg);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), padding 0.5s ease-out;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .faq-item.active .faq-content {
            padding-bottom: 2rem;
        }

        .faq-answer {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-top: 0;
        }

        /* ==========================================================================
            SECTION: HOW IT WORKS (ALTERNATIVE DESIGN) - #how-it-works-section-alt
            ========================================================================== */
        #how-it-works-section-alt {
            padding: 6rem 2rem;
            background-color: var(--bg-light);
            background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23e8f5e9' fill-opacity='0.4'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            text-align: center;
        }

        .how-it-works-container-alt {
            max-width: 1200px;
            margin: 0 auto;
        }

        .how-it-works-header-alt {
            margin-bottom: 4rem;
        }

        .how-it-works-eyebrow-alt {
            color: var(--brand-green-accent);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }

        .how-it-works-heading-alt {
            font-family: 'Playfair Display', serif;
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 0.5rem 0;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .how-it-works-accent-alt {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-green-mid) 0%, var(--brand-green-accent) 100%);
            margin: 1rem auto 1.5rem auto;
            border-radius: 6px;
            box-shadow: 0 0 15px var(--glow-color);
        }

        .how-it-works-hook-alt {
            font-size: 1.25rem;
            line-height: 1.75;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

        .how-it-works-steps-wrapper {
            display: flex;
            flex-direction: column; /* Stack vertically by default (mobile-first) */
            gap: 3rem; /* Space between steps when stacked */
            position: relative;
            margin-top: 4rem;
            align-items: center; /* Center items horizontally when stacked */
        }

        @media (min-width: 768px) {
            .how-it-works-steps-wrapper {
                flex-direction: row; /* Horizontal layout on larger screens */
                justify-content: space-between;
                align-items: flex-start; /* Align to top for consistent card height */
                gap: 2rem; /* Adjust gap for horizontal layout */
            }

            /* Connector lines for desktop */
            .how-it-works-steps-wrapper::before {
                content: '';
                position: absolute;
                top: 70px; /* Aligned with step number circle center */
                left: 10%; /* Start after first step */
                right: 10%; /* End before last step */
                height: 2px;
                background: linear-gradient(90deg, var(--brand-green-light) 0%, var(--brand-green-mid) 50%, var(--brand-green-light) 100%);
                z-index: 0;
            }
        }

        .how-it-works-step {
            flex: 1; /* Allows items to grow and shrink within flex container */
            background: rgba(255, 255, 255, 0.6);
            border-radius: 0;
            padding: 2rem;
            box-shadow: 0 10px 40px -10px rgba(42, 157, 143, 0.125);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1.5px solid rgba(255, 255, 255, 0.8);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            z-index: 1; /* Ensure cards are above connector line */
            max-width: 350px; /* Limit individual card width */
            width: 100%; /* Ensure it takes full available width within max-width */
        }

        .how-it-works-step::before {
            content: '';
            position: absolute;
            top: var(--y, 50%);
            left: var(--x, 50%);
            transform: translate(-50%, -50%) scale(0);
            width: 250px;
            height: 250px;
            background-image: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
            z-index: 0;
            pointer-events: none;
        }

        .how-it-works-step:hover::before {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .how-it-works-step:hover {
            transform: translateY(-16px) scale(1.05);
            box-shadow: 0 25px 50px -12px rgba(42, 157, 143, 0.25);
            border-color: var(--brand-green-mid);
        }

        .how-it-works-step .step-number-circle {
            font-family: 'Playfair Display', serif;
            /* Adjusted for smaller circle */
            font-size: 1.6rem; 
            font-weight: 800;
            color: #fff;
            background-image: linear-gradient(135deg, var(--brand-green-accent) 0%, var(--brand-green-mid) 100%);
            /* Adjusted for smaller circle */
            width: 60px; 
            height: 60px; 
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            /* Adjusted margin for smaller circle */
            margin-bottom: 1rem; 
            box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3);
            transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            border: 3px solid rgba(255,255,255,0.7); /* Thicker border */
            position: relative;
            z-index: 1; /* Ensure circle is above card glow */
        }

        .how-it-works-step:hover .step-number-circle {
            transform: scale(1.15); /* More pronounced hover effect */
            box-shadow: 0 12px 30px rgba(42, 157, 143, 0.4);
            border-color: #fff;
        }

        .how-it-works-step .step-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }

        .how-it-works-step .step-description {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
        }

        /* ==========================================================================
            SECTION: ELIGIBILITY / WHO CAN LIST - #eligibility-section
            ========================================================================== */
        #eligibility-section {
            padding: 6rem 2rem; /* Consistent section padding */
            background-color: var(--bg-light);
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8f5e9' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            text-align: center;
        }

        .eligibility-container {
            max-width: 1200px; /* Consistent max-width for content containers */
            margin: 0 auto;
        }

        .eligibility-header {
            margin-bottom: 4rem; /* Consistent spacing below header */
        }

        .eligibility-eyebrow {
            color: var(--brand-green-accent);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }

        .eligibility-heading {
            font-family: 'Playfair Display', serif;
            font-size: 2.75rem; /* Consistent heading size */
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 0.5rem 0;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .eligibility-accent {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-green-mid) 0%, var(--brand-green-accent) 100%);
            margin: 1rem auto 1.5rem auto;
            border-radius: 6px;
            box-shadow: 0 0 15px var(--glow-color);
        }

        .eligibility-hook {
            font-size: 1.25rem;
            line-height: 1.75;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

        .eligibility-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr); /* Mobile-first: single column */
            gap: 2rem; /* Consistent grid gap */
            margin-top: 4rem;
        }

        @media (min-width: 768px) {
            .eligibility-grid {
                grid-template-columns: repeat(2, 1fr); /* Tablet: two columns */
            }
        }

        @media (min-width: 1024px) {
            .eligibility-grid {
                grid-template-columns: repeat(3, 1fr); /* Desktop: three columns */
            }
        }

        .eligibility-card {
            background: rgba(255, 255, 255, 0.6); /* Glassmorphism background */
            border-radius: 0; /* Consistent sharp corners */
            padding: 2rem;
            box-shadow: 0 10px 40px -10px rgba(42, 157, 143, 0.125);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1.5px solid rgba(255, 255, 255, 0.8);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        .eligibility-card::before {
            content: '';
            position: absolute;
            top: var(--y, 50%); /* Dynamic Y position from JS */
            left: var(--x, 50%); /* Dynamic X position from JS */
            transform: translate(-50%, -50%) scale(0); /* Hidden by default */
            width: 250px;
            height: 250px;
            background-image: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
            z-index: 0; /* Behind content */
            pointer-events: none; /* Allows clicks to pass through */
        }

        .eligibility-card:hover::before {
            transform: translate(-50%, -50%) scale(1); /* Expands on hover */
            opacity: 1;
        }

        .eligibility-card:hover {
            transform: translateY(-16px) scale(1.05); /* Lifts and slightly scales on hover */
            box-shadow: 0 25px 50px -12px rgba(42, 157, 143, 0.25);
            border-color: var(--brand-green-mid); /* Border changes color on hover */
        }

        .eligibility-card .card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            line-height: 1.2;
            position: relative;
            z-index: 1; /* Above the glow */
        }

        .eligibility-card .card-description {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            position: relative;
            z-index: 1; /* Above the glow */
        }

        /* ==========================================================================
           RESPONSIVE ADJUSTMENTS (Applies to all sections)
           ========================================================================== */
        @media (max-width: 991px) {
            /* General adjustments for tablet and smaller desktops */
            #list-land-hero-section,
            #trust-social-proof-section,
            #secondary-ctas-section,
            #faq-section,
            #how-it-works-section-alt,
            #eligibility-section {
                padding: 4rem 1.5rem;
            }

            .hero-heading,
            .trust-heading,
            .secondary-ctas-heading,
            .faq-heading,
            .how-it-works-heading-alt,
            .eligibility-heading {
                font-size: 2.25rem;
            }

            .hero-subheading,
            .trust-hook,
            .secondary-ctas-hook,
            .faq-hook,
            .how-it-works-hook-alt,
            .eligibility-hook {
                font-size: 1.1rem;
            }

            .usp-list li {
                font-size: 1rem;
            }

            .form-title {
                font-size: 1.75rem;
            }
            .form-group input,
            .form-group textarea,
            .form-group select,
            .btn-primary,
            .btn-secondary {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
            .radio-options input[type="radio"] + label {
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
            }
            .form-actions {
                flex-direction: column;
            }
            .form-review-summary {
                padding: 1rem;
            }
            .form-review-summary h3 {
                font-size: 1.25rem;
            }
            .form-review-summary p {
                font-size: 0.85rem;
            }

            .testimonials-grid,
            .cta-grid,
            .eligibility-grid {
                grid-template-columns: 1fr;
            }
            .testimonial-card,
            .cta-card,
            .eligibility-card {
                padding: 1.5rem;
            }
            .testimonial-quote,
            .cta-card .card-description,
            .eligibility-card .card-description {
                font-size: 1rem;
            }
            .cta-card .card-icon {
                font-size: 2.5rem;
                margin-bottom: 0.5rem;
            }
            .cta-card .card-title,
            .eligibility-card .card-title {
                font-size: 1.5rem;
            }

            .faq-question-button {
                font-size: 1rem;
                padding: 1.25rem 1.5rem;
            }
            .faq-indicator {
                width: 24px;
                height: 24px;
            }
            .faq-content {
                padding: 0 1.5rem;
            }
            .faq-item.active .faq-content {
                padding-bottom: 1.5rem;
            }
            .faq-answer {
                font-size: 0.95rem;
            }

            .how-it-works-steps-wrapper {
                gap: 2.5rem;
            }
            .how-it-works-steps-wrapper::before {
                display: none; /* Hide connector line on mobile */
            }
            .how-it-works-step {
                padding: 1.5rem;
                max-width: 100%;
            }
            .how-it-works-step .step-number-circle {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
                margin-bottom: 1rem;
            }
            .how-it-works-step .step-title {
                font-size: 1.5rem;
            }
            .how-it-works-step .step-description {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            /* Further refined adjustments for very small screens */
            .hero-content-wrapper {
                padding: 2rem 1rem;
            }
            .hero-heading,
            .trust-heading,
            .secondary-ctas-heading,
            .faq-heading,
            .how-it-works-heading-alt,
            .eligibility-heading {
                font-size: 2rem;
            }
            .hero-subheading,
            .trust-hook,
            .secondary-ctas-hook,
            .faq-hook,
            .how-it-works-hook-alt,
            .eligibility-hook {
                font-size: 0.95rem;
            }
            .usp-list li {
                font-size: 0.9rem;
            }
            .credibility-badges {
                gap: 1rem;
            }
            .credibility-badges img {
                max-height: 50px;
            }
            .credibility-badges span {
                font-size: 0.8rem;
            }
            .listing-form-container {
                padding: 1.5rem;
            }
            .form-title {
                font-size: 1.5rem;
            }
            .form-progress {
                font-size: 0.8rem;
            }
            .form-group input,
            .form-group textarea,
            .form-group select,
            .btn-primary,
            .btn-secondary {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
            }
            .radio-options {
                gap: 0.5rem;
            }
            .radio-options input[type="radio"] + label {
                padding: 0.5rem 0.8rem;
                font-size: 0.8rem;
            }
            .checkbox-group label {
                font-size: 0.8rem;
            }

            .partner-logos {
                gap: 1.5rem 2.5rem;
            }
            .partner-logos img {
                max-height: 60px;
            }

            .cta-card {
                min-height: 250px;
            }
            .cta-card .card-icon {
                font-size: 2.25rem;
            }
            .cta-card .card-title {
                font-size: 1.3rem;
            }
            .cta-card .card-description {
                font-size: 0.9rem;
            }

            .how-it-works-steps-wrapper {
                gap: 2rem;
            }
            .how-it-works-step {
                padding: 1.25rem;
            }
            .how-it-works-step .step-number-circle {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
                margin-bottom: 0.75rem;
            }
            .how-it-works-step .step-title {
                font-size: 1.3rem;
                margin-bottom: 0.5rem;
            }
            .how-it-works-step .step-description {
                font-size: 0.85rem;
            }
        }
    