:root {
        /* Brand Colors */
        --brand-primary: #BFB59D;
        --brand-accent: #2D4A3E;
        --background: #FFFFFF;
        
        /* Text Hierarchy */
        --text-premium: #2F3435;
        --text-primary: #3A4142;
        --text-body: #333333;
        --text-secondary: #666666;
        
        /* Supporting Colors */
        --light-background: #FAFAFA;
        --border-color: rgba(191, 181, 157, 0.2);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Geist', system-ui, sans-serif;
        line-height: 1.6;
        background-color: var(--background);
        color: var(--text-body);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Header */
    header {
        position: sticky;
        top: 0;
        background: var(--background);
        border-bottom: 1px solid rgba(165, 161, 135, 0.2);
        z-index: 100;
        padding: 1rem 0;
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .logo-image {
        height: 32px;
        width: auto;
    }

    .footer-logo-image {
        height: 32px;
        width: auto;
    }

    .nav-links {
        display: none;
        list-style: none;
        gap: 2rem;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-primary);
        font-weight: 500;
        transition: color 0.3s ease;
        padding-bottom: 4px;
        border-bottom: 3px solid transparent;
    }

    .nav-links a:hover:not(.active) {
        color: var(--brand-primary);
    }


    .mobile-menu {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-primary);
        cursor: pointer;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 0;
        text-align: center;
    }

    .credibility-banner {
        display: inline-flex;
        align-items: center;
        padding: 8px 16px;
        border: 1px solid rgba(165, 161, 135, 0.3);
        border-radius: 9999px;
        margin-bottom: 2rem;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-primary);
    }

    .credibility-banner .star {
        width: 16px;
        height: 16px;
        margin-right: 8px;
        color: var(--brand-primary);
    }

    .hero h1 {
        font-size: clamp(3rem, 6vw, 6rem);
        font-weight: bold;
        color: var(--text-premium);
        margin-bottom: 1rem;
    }

    .hero h2 {
        font-size: clamp(2rem, 4vw, 4rem);
        font-weight: 600;
        color: var(--text-primary);
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero h3 {
        font-size: clamp(1.5rem, 3vw, 3rem);
        font-weight: 500;
        color: var(--text-primary);
        margin-bottom: 2rem;
    }

    .hero-description {
        font-size: 1.125rem;
        color: var(--text-body);
        max-width: 600px;
        margin: 0 auto 3rem;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: var(--brand-accent);
        color: white;
        padding: 16px 32px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 18px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn-primary:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 24px rgba(45, 74, 62, 0.3);
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-primary);
        padding: 14px 30px;
        border: 2px solid var(--text-primary);
        border-radius: 8px;
        font-weight: 600;
        font-size: 18px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn-secondary:hover {
        background: var(--text-primary);
        color: white;
    }

    /* Benefits Carousel */
    .benefits {
        padding: 3rem 0;
        background: linear-gradient(rgba(250, 250, 250, 0.4), rgba(250, 250, 250, 0.4)), url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .benefits .benefits-header h2 {
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .benefits .benefits-subtitle {
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Lenders Page Benefits - Different Background */
    .lenders-benefits {
        background: linear-gradient(rgba(250, 250, 250, 0.4), rgba(250, 250, 250, 0.4)), url('https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') !important;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    /* Appraisers Page Why Choose - Background */
    .appraisers-why-choose {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .appraisers-why-choose .section-header h2,
    .appraisers-why-choose .section-subtitle {
        color: white;
    }

    .benefits-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .benefits h2 {
        font-size: clamp(2rem, 4vw, 4rem);
        font-weight: bold;
        color: var(--text-premium);
        margin-bottom: 1rem;
    }

    .benefits-subtitle {
        font-size: 1.25rem;
        color: var(--text-primary);
        max-width: 600px;
        margin: 0 auto;
    }

    .carousel-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .carousel-nav {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: white;
        border: 1px solid rgba(165, 161, 135, 0.2);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-nav:hover {
        background: #f5f5f5;
    }

    .carousel-track {
        width: 400px;
        height: 450px;
        overflow: hidden;
        position: relative;
    }

    .carousel-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.5s ease;
    }

    .carousel-slide.active {
        opacity: 1;
        transform: translateX(0);
    }

    .carousel-slide.prev {
        transform: translateX(-100%);
        opacity: 0;
    }

    .benefit-card {
        background: white;
        border: 1px solid rgba(165, 161, 135, 0.2);
        border-radius: 16px;
        padding: 32px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: box-shadow 0.3s ease;
    }


    .benefit-icon {
        width: 56px;
        height: 56px;
        background: var(--brand-primary);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
    }

    /* Different colors for each carousel slide */
    .carousel-slide:nth-child(1) .benefit-icon {
        background: var(--brand-primary);
    }

    .carousel-slide:nth-child(2) .benefit-icon {
        background: var(--brand-accent);
    }

    .carousel-slide:nth-child(3) .benefit-icon {
        background: var(--text-premium);
    }

    .carousel-slide:nth-child(4) .benefit-icon {
        background: var(--brand-primary);
    }

    .carousel-slide:nth-child(5) .benefit-icon {
        background: var(--text-premium);
    }

    .benefit-icon svg {
        width: 28px;
        height: 28px;
        color: white;
    }

    .benefit-card h3 {
        font-size: 26px;
        font-weight: bold;
        color: var(--text-premium);
        margin-bottom: 32px;
    }

    .benefit-card p {
        font-size: 18px;
        color: var(--text-body);
        line-height: 1.6;
    }

    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 32px;
    }

    .progress-line {
        width: 40px;
        height: 4px;
        background: var(--brand-accent);
        border-radius: 2px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .progress-fill {
        width: 0;
        height: 100%;
        background: white;
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .progress-line.active .progress-fill {
        width: 100%;
    }

    /* Audience Split */
    .audience {
        padding: 4rem 0;
    }

    .audience-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .audience h2 {
        font-size: clamp(2rem, 4vw, 4rem);
        font-weight: bold;
        color: var(--text-premium);
        margin-bottom: 1rem;
    }

    .audience-subtitle {
        font-size: 1.25rem;
        color: var(--text-primary);
    }

    .audience-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .audience-card {
        background: white;
        padding: 32px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
    }

    .audience-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .audience-card-header {
        display: flex;
        align-items: center;
        margin-bottom: 24px;
    }

    .audience-icon {
        width: 48px;
        height: 48px;
        background: var(--brand-primary);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
    }

    .audience-icon svg {
        width: 24px;
        height: 24px;
        color: white;
    }

    .audience-card h3 {
        font-size: 2rem;
        font-weight: bold;
        color: var(--text-premium);
    }

    .features-list {
        list-style: none;
        margin-bottom: 2rem;
    }

    .features-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 16px;
        color: var(--text-body);
    }

    .check-icon {
        width: 20px;
        height: 20px;
        color: var(--brand-accent);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .btn-full {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 16px;
    }

    /* Trust Section */
    .trust {
        padding: 4rem 0;
        background: #fafafa;
    }

    .trust-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .trust h2 {
        font-size: clamp(2rem, 4vw, 4rem);
        font-weight: bold;
        color: var(--text-premium);
        margin-bottom: 1rem;
    }

    .trust-subtitle {
        font-size: 1.25rem;
        color: var(--text-primary);
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .trust-grid-bottom {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin: 0 auto;
    }

    .trust-item {
        text-align: center;
    }

    .trust-icon {
        width: 64px;
        height: 64px;
        background: var(--brand-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
    }

    .trust-icon svg {
        width: 32px;
        height: 32px;
        color: white;
    }

    .trust-item h3 {
        font-size: 1.25rem;
        font-weight: bold;
        color: var(--text-premium);
        margin-bottom: 8px;
    }

    .trust-item p {
        font-size: 16px;
        color: var(--text-body);
    }

    /* Final CTA */
    .final-cta {
        padding: 4rem 0;
        text-align: center;
    }

    .final-cta h2 {
        font-size: clamp(2rem, 4vw, 4rem);
        font-weight: bold;
        color: var(--text-premium);
        margin-bottom: 24px;
    }

    .final-cta-subtitle {
        font-size: 1.25rem;
        color: var(--text-primary);
        max-width: 700px;
        margin: 0 auto 40px;
    }

    /* Footer */
    footer {
        background: var(--text-premium);
        color: white;
        padding: 3rem 0 2rem;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        margin-bottom: 3rem;
    }

    .footer-left {
        max-width: 400px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .footer-tagline {
        font-size: 14px;
        color: #cccccc;
        margin-bottom: 16px;
    }

    .footer-description {
        font-size: 14px;
        color: #aaaaaa;
        line-height: 1.6;
    }

    .footer-nav {
        display: flex;
        gap: 4rem;
    }

    .footer-column h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 16px;
        color: white;
    }

    .footer-column ul {
        list-style: none;
    }

    .footer-column li {
        margin-bottom: 8px;
    }

    .footer-column a {
        font-size: 14px;
        color: #cccccc;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-column a:hover {
        color: white;
    }

    .footer-bottom {
        border-top: 1px solid #444;
        padding-top: 32px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 14px;
        color: #aaaaaa;
    }

    /* Navigation Active State */
    .nav-links a.active {
        color: var(--brand-accent);
        font-weight: 700;
        border-bottom: 3px solid var(--brand-primary);
        padding-bottom: 4px;
    }

    /* Main Content for About Page */
    main {
        padding: 3rem 0;
    }

    main h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 1rem;
        margin-top: 2rem;
    }

    main h3:first-child {
        margin-top: 0;
    }

    main p {
        font-size: 1.125rem;
        color: var(--text-body);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    main p:last-child {
        margin-bottom: 0;
    }

    /* Hero Badge for Appraisers */
    .hero-badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 16px;
        background: var(--brand-accent);
        color: white;
        border-radius: 9999px;
        margin-bottom: 2.5rem;
        font-size: 14px;
        font-weight: 600;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: var(--text-primary);
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    /* Why Choose Section */
    .why-choose {
        padding: 4rem 0;
    }

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

    .section-header h2 {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.25rem;
        color: var(--text-primary);
        max-width: 700px;
        margin: 0 auto;
    }

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

    /* For Lenders page - 4 cards in single row on desktop */
    .lenders-benefits .benefits-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    /* Tablet view - 2 columns */
    @media (max-width: 1024px) {
        .lenders-benefits .benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .lenders-benefits .benefit-card {
        padding: 32px 24px;
    }

    .lenders-benefits .benefit-card h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .lenders-benefits .benefit-card p {
        font-size: 15px;
        line-height: 1.5;
    }

    .lenders-benefits .benefit-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .lenders-benefits .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Hover effect only for non-carousel benefit cards */
    .benefits-grid .benefit-card:hover,
    .lenders-benefits .benefit-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
    }

    /* Features Section */
    .features {
        padding: 4rem 0;
        background: #F5F2ED;
    }

    .features .section-header h2 {
        color: var(--text-premium);
    }

    .features .section-subtitle {
        color: var(--text-primary);
    }

    .features-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .features-text h2 {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 1.5rem;
    }

    .features-visual {
        background: white;
        border-radius: 16px;
        padding: 32px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .features-visual h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 16px;
        text-align: center;
    }

    /* Integration Steps */
    .integration-steps {
        list-style: none;
    }

    .integration-steps li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1rem;
        color: var(--text-body);
    }

    .integration-steps li:last-child {
        border-bottom: none;
    }

    .step-number {
        width: 24px;
        height: 24px;
        background: var(--brand-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
        font-weight: 600;
        flex-shrink: 0;
    }

    /* Comparison Grid */
    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }

    .comparison-column {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .comparison-column:last-child {
        background: var(--light-background);
    }

    .comparison-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        text-align: left;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid var(--brand-primary);
    }

    .comparison-title.positive {
        color: var(--brand-accent);
    }

    .comparison-title.negative {
        color: var(--text-premium);
    }

    .comparison-list {
        list-style: none;
    }

    .comparison-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 16px;
        color: var(--text-body);
        line-height: 1.5;
    }

    .x-icon {
        width: 20px;
        height: 20px;
        color: #dc3545;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .comparison-cta {
        text-align: center;
        margin-top: 2rem;
    }

    .comparison-cta .btn-white {
        background: var(--brand-accent);
        color: white;
    }

    .comparison-cta .btn-white:hover {
        background: var(--brand-accent);
        filter: brightness(1.1);
        transform: scale(1.05);
        box-shadow: 0 8px 24px rgba(45, 74, 62, 0.3);
    }

    /* Pain Points */
    .pain-points {
        list-style: none;
    }

    /* About Page - Tile Layout */
    .about-page-main {
        background: #F5F2ED;
        min-height: 100vh;
        padding: 3rem 0;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }

    .about-tile {
        background: white;
        border-radius: 16px;
        padding: 2.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color);
    }

    .about-tile h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 1.5rem;
        border-bottom: 2px solid var(--brand-primary);
        padding-bottom: 0.75rem;
    }

    .about-tile p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-body);
        margin-bottom: 1rem;
    }

    .about-tile p:last-child {
        margin-bottom: 0;
    }

    /* Schedule Page - Same Background */
    .schedule-page-main {
        background: #F5F2ED;
        min-height: 100vh;
        padding: 3rem 0;
    }

    /* Contact Page - Same Background */
    .contact-page-main {
        background: #F5F2ED;
        min-height: 100vh;
        padding: 3rem 0;
    }

    .pain-points li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1rem;
        color: var(--text-body);
    }

    .pain-points li:last-child {
        border-bottom: none;
    }

    .pain-icon {
        width: 24px;
        height: 24px;
        color: #dc2626;
        flex-shrink: 0;
    }

    .solution-icon {
        width: 24px;
        height: 24px;
        color: var(--brand-accent);
        flex-shrink: 0;
    }

    /* FAQ Section */
    .faq {
        padding: 4rem 0;
        background: linear-gradient(rgba(250, 250, 250, 0.7), rgba(250, 250, 250, 0.7)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 24px;
    }

    .faq-item h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 12px;
    }

    .faq-item p {
        font-size: 1rem;
        color: var(--text-body);
        line-height: 1.6;
    }

    /* Scale Section */
    .scale {
        padding: 4rem 0;
    }

    .scale-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .scale h2 {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 1.5rem;
    }

    .scale p {
        font-size: 1.25rem;
        color: var(--text-body);
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .scale-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin: 3rem 0;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--brand-accent);
        display: block;
    }

    .stat-label {
        font-size: 1rem;
        color: var(--text-secondary);
        margin-top: 8px;
        display: block;
    }

    /* Trust Stats */
    .trust-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .trust-content h2 {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 1.5rem;
    }

    .trust-content p {
        font-size: 1.25rem;
        color: var(--text-body);
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .trust-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin: 3rem 0;
    }

    /* CTA Section */
    .cta {
        padding: 4rem 0;
        background: var(--text-premium);
        color: white;
        text-align: center;
    }

    .cta h2 {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 1.25rem;
        color: #cccccc;
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    .btn-white {
        background: white;
        color: var(--brand-accent);
        padding: 16px 32px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 18px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn-white:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    }

    /* Page Header for Contact */
    .page-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .page-header h1 {
        font-size: clamp(2rem, 4vw, 2.75rem);
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 1rem;
    }

    .page-subtitle {
        font-size: 1.25rem;
        color: var(--text-primary);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Contact Options */
    .contact-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .contact-card {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 32px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .contact-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
    }

    .contact-icon {
        width: 64px;
        height: 64px;
        background: var(--brand-accent);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
    }

    .contact-card:nth-child(2) .contact-icon {
        background: var(--brand-primary);
    }

    .contact-card:nth-child(3) .contact-icon {
        background: var(--text-premium);
    }

    .contact-icon svg {
        width: 32px;
        height: 32px;
        color: white;
    }

    .contact-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 16px;
    }

    .contact-card p {
        font-size: 1rem;
        color: var(--text-body);
        line-height: 1.6;
        margin-bottom: 24px;
    }

    /* Contact Info Section */
    .contact-info {
        background: var(--light-background);
        border-radius: 16px;
        padding: 32px;
        margin-bottom: 2rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 1rem;
        text-align: center;
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        text-align: center;
    }

    .info-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .info-icon {
        width: 48px;
        height: 48px;
        background: var(--brand-primary);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }

    .info-icon svg {
        width: 24px;
        height: 24px;
        color: white;
    }

    .info-item h4 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 8px;
    }

    .info-item p {
        font-size: 1rem;
        color: var(--text-body);
        margin: 0;
    }

    .info-item a {
        color: var(--brand-accent);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .info-item a:hover {
        color: var(--text-premium);
        text-decoration: underline;
    }

    /* CTA Buttons */
    .cta-buttons {
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Responsive Design */
    @media (min-width: 768px) {
        .nav-links {
            display: flex;
        }
        
        .mobile-menu {
            display: none;
        }
        
        .hero-buttons {
            flex-wrap: nowrap;
        }
    }

    @media (max-width: 768px) {
        .container {
            padding: 0 1rem;
        }
        
        .hero {
            padding: 2rem 0;
        }
        
        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .carousel-container {
            flex-direction: column;
        }
        
        .carousel-nav {
            display: none;
        }
        
        .carousel-track {
            width: 100%;
            max-width: 350px;
        }
        
        .audience-grid {
            grid-template-columns: 1fr;
        }
        
        .trust-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        .trust-grid-bottom {
            grid-template-columns: 1fr;
            gap: 3rem;
            max-width: none;
        }
        
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        
        .footer-nav {
            gap: 2rem;
        }
        
        .benefits-grid {
            grid-template-columns: 1fr;
        }

        /* For Lenders page - responsive on mobile */
        .lenders-benefits .benefits-grid {
            grid-template-columns: 1fr;
        }

        .lenders-benefits .benefit-card {
            padding: 32px;
        }
        
        .features-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .comparison-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .comparison-column {
            padding: 1.5rem;
        }

        .about-tile {
            padding: 1.5rem;
        }

        .faq-grid {
            grid-template-columns: 1fr;
        }
        
        .trust-stats {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .scale-stats {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .contact-options {
            grid-template-columns: 1fr;
        }
        
        .info-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: flex-start;
        }
        
        main {
            padding: 2rem 0;
        }
        
        .header-content {
            padding: 0 1rem;
        }
    }

    /* Schedule Page Styles */
    .calendar-section {
        margin: 3rem 0;
        padding: 2rem 0;
    }

    .calendar-container {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color);
        overflow: hidden;
    }

    .calendar-container iframe {
        width: 100%;
        min-height: 600px;
        border: none;
        border-radius: 8px;
    }

    .schedule-benefits {
        margin-top: 4rem;
        text-align: center;
    }

    .schedule-benefits h2 {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 3rem;
    }

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

    .benefit-item {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        text-align: center;
        transition: all 0.3s ease;
    }

    .benefit-item:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
    }

    .benefit-icon {
        width: 64px;
        height: 64px;
        background: var(--brand-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .benefit-icon svg {
        width: 32px;
        height: 32px;
        color: white;
    }

    .benefit-item h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-premium);
        margin-bottom: 1rem;
    }

    .benefit-item p {
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* Mobile responsiveness for schedule page */
    @media (max-width: 768px) {
        .calendar-container {
            padding: 1rem;
            margin: 0 -1rem;
            border-radius: 0;
        }

        .calendar-container iframe {
            min-height: 500px;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .benefit-item {
            padding: 1.5rem;
        }
    }