    body {
        font-family: 'Lato', sans-serif;
        background: #ffffff !important;
        color: #1d1d1f;
        line-height: 1.4;
        scroll-behavior: smooth;
    }
    
    /* Split Screen Hero */
    .split-hero {
        height: 100vh;
        display: flex;
        position: relative;
        overflow: hidden;
    }
    
    .split-left {
        flex: 1;
        background: #fafafa;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px;
    }
    
    .split-right {
        flex: 1;
        position: relative;
        overflow: hidden;
    }

    .split-right .hero-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-content {
        max-width: 480px;
        transform: translateX(-50px);
        opacity: 0;
        animation: slideInContent 2s ease-out forwards;
    }
    
    @keyframes slideInContent {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    .hero-title {
        font-size: 84px;
        font-weight: 100;
        color: #1d1d1f;
        margin-bottom: 32px;
        letter-spacing: -0.06em;
        line-height: 0.9;
    }
    
    .hero-subtitle {
        font-size: 24px;
        color: #86868b;
        margin-bottom: 48px;
        font-weight: 300;
        line-height: 1.3;
    }

    /* Simple Social Proof Section */
    .hero-social-proof {
        display: flex;
        align-items: center;
        gap: 16px;
        margin: 25px 0;
    }

    .hero-social-proof .trust-avatars {
        display: flex;
    }

    .hero-social-proof .trust-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 2px solid #fff;
        margin-left: -10px;
        object-fit: cover;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .hero-social-proof .trust-avatar:first-child {
        margin-left: 0;
    }

    .hero-social-proof .proof-stats {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .hero-social-proof .stat-block {
        text-align: center;
    }

    .hero-social-proof .stat-number {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        line-height: 1;
    }

    .hero-social-proof .stat-stars {
        color: #f3cc2e;
        font-size: 14px;
        letter-spacing: 1px;
        margin: 4px 0;
    }

    .hero-social-proof .stat-label {
        font-size: 11px;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .hero-social-proof .stat-divider {
        width: 1px;
        height: 40px;
        background: #ddd;
    }

    .hero-cta {
        display: inline-block;
        padding: 16px 40px;
        background: #E7457D;
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }
    
    .hero-cta:hover {
        background: #d63c70;
        transform: translateY(-2px);
        text-decoration: none;
        color: white;
    }
    
    .image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            45deg,
            rgba(231, 69, 125, 0.15) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(231, 69, 125, 0.1) 100%
        );
        z-index: 2;
    }
    
    /* Artistic Spacer */
    .artistic-spacer {
        padding: 120px 40px;
        text-align: center;
        background: #ffffff;
        position: relative;
    }
    
    .paint-brush {
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #E7457D 0%, #f3a5c4 50%, #E7457D 100%);
        margin: 0 auto 40px;
        position: relative;
        overflow: hidden;
    }
    
    .paint-brush::before {
        content: '';
        position: absolute;
        width: 30px;
        height: 100%;
        background: rgba(255, 255, 255, 0.8);
        animation: paintStroke 4s infinite ease-in-out;
    }
    
    @keyframes paintStroke {
        0%, 100% { left: -30px; }
        50% { left: 100px; }
    }
    
    .spacer-content {
        position: relative;
    }
    
    
    .spacer-text {
        font-size: 26px;
        color: #1d1d1f;
        font-weight: 300;
        margin-bottom: 20px;
    }
    
    .spacer-subtext {
        font-size: 16px;
        color: #86868b;
        font-style: italic;
    }
    
    /* Three Info Boxes Section */
    .info-boxes-section {
        background: #ffffff;
        padding: 80px 0;
    }
    
    .info-boxes-container {
        max-width: none;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .info-box {
        background: transparent;
        transition: all 0.3s ease;
        overflow: hidden;
    }
    
    .info-box:hover {
        transform: none;
    }
    
    .info-box-image {
        width: 100%;
        height: auto;
        overflow: hidden;
        position: relative;
    }
    
    .info-box-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
        display: block;
    }
    
    .info-box:hover .info-box-image img {
        transform: scale(1.05);
    }
    
    .info-box-content {
        padding: 30px 25px;
        text-align: center;
    }
    
    .info-box-title {
        font-size: 26px;
        font-weight: 300;
        color: #1d1d1f;
        margin-bottom: 20px;
        text-transform: none;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }
    
    .info-box-description {
        font-size: 16px;
        color: #86868b;
        line-height: 1.4;
        margin-bottom: 0;
        font-weight: 300;
        font-style: italic;
    }
    
    
    /* Mobile responsive for info boxes */
    @media (max-width: 768px) {
        .info-boxes-container {
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 0 10px;
        }
        
        .info-boxes-section {
            padding: 60px 0;
        }
        
        .info-box-image {
            height: auto;
        }
        
        .info-box-content {
            padding: 25px 20px;
        }
        
        .info-box-title {
            font-size: 22px;
        }
        
        .info-box-description {
            font-size: 14px;
        }
    }
    
    /* Impact Stats Hero Section - V4 Split Mobile Design */
    .stats-hero {
        min-height: 90vh;
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .stats-image {
        flex: 1.6;
        min-height: 650px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .stats-content {
        flex: 1;
        background: white;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .stats-badge {
        display: inline-block;
        background: #E7457D;
        color: white;
        padding: 8px 16px;
        font-size: 11px;
        font-weight: 600;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        align-self: flex-start;
        animation: fadeInUp 0.8s ease-out;
    }

    .stats-title {
        font-size: 32px;
        font-weight: 900;
        color: #1d1d1f;
        margin-bottom: 16px;
        letter-spacing: -0.02em;
        line-height: 1.1;
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .stats-subtitle {
        font-size: 16px;
        color: #666;
        margin-bottom: 30px;
        line-height: 1.4;
        font-weight: 300;
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }

    .stat-item {
        text-align: center;
        padding: 20px 15px;
        background: #fafafa;
    }

    .stat-number {
        font-size: 26px;
        font-weight: 900;
        color: #E7457D;
        margin-bottom: 8px;
        letter-spacing: -0.02em;
    }

    .stat-label {
        font-size: 11px;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 600;
        line-height: 1.3;
    }

    /* Desktop responsive styles for stats section */
    @media (min-width: 768px) {
        .stats-hero {
            flex-direction: row;
            min-height: 60vh;
        }

        .stats-image {
            min-height: 650px;
        }

        .stats-content {
            padding: 60px 50px;
        }

        .stats-title {
            font-size: 48px;
            margin-bottom: 24px;
        }

        .stats-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
        }

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

        .stat-number {
            font-size: 36px;
            margin-bottom: 12px;
        }

        .stat-label {
            font-size: 14px;
        }

        .stat-item {
            padding: 25px 20px;
        }
    }

    @media (min-width: 1024px) {
        .stats-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
    }

    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    

    /* Seen On Section - Extra Tight Spacing (Final) */
    .seen-on-section {
        background: #ffffff;
        padding: 80px 0;
        margin-top: 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .seen-on-header {
        margin-bottom: 20px;
        padding: 0 40px;
    }
    
    .seen-on-title {
        font-size: 24px;
        font-weight: 100;
        color: #1d1d1f;
        margin-bottom: 8px;
        letter-spacing: -0.02em;
    }
    
    .seen-on-subtitle {
        font-size: 12px;
        color: #86868b;
        font-weight: 300;
    }
    
    .logo-carousel-wrapper {
        position: relative;
        height: 50px;
        overflow: hidden;
        mask: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
        -webkit-mask: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
    }
    
    .logo-carousel {
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .logo-track {
        display: flex;
        align-items: center;
        animation: scrollLogos 30s linear infinite;
        gap: 80px;
        white-space: nowrap;
    }
    
    .logo-item {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 180px;
        height: 80px;
        transition: all 0.3s ease;
    }
    
    .logo-item img {
        max-height: 60px;
        max-width: 160px;
        object-fit: contain;
        filter: grayscale(100%) opacity(0.7);
        transition: all 0.3s ease;
    }
    
    .logo-item:hover img {
        filter: grayscale(0%) opacity(1);
        transform: scale(1.05);
    }
    
    .logo-text {
        font-weight: 800;
        color: #1d1d1f;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }
    
    .logo-item:hover .logo-text {
        color: #333;
        transform: scale(1.05);
    }
    
    .logo-netflix {
        font-size: 42px;
        color: #666;
        font-weight: 800;
        letter-spacing: -0.05em;
    }
    
    @keyframes scrollLogos {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    /* Story Items */
    .story-section {
        padding: 80px 0 0;
    }
    
    .story-item {
        display: flex;
        min-height: 650px;
        margin-bottom: 0;
        opacity: 0;
        transform: scale(0.98);
        transition: all 1.2s ease-out;
    }
    
    .story-item.in-view {
        opacity: 1;
        transform: scale(1);
    }
    
    .story-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .story-image {
        flex: 1.6;
        background-size: cover;
        background-position: center;
        position: relative;
        min-height: 650px;
    }
    
    .story-badge {
        position: absolute;
        top: 40px;
        right: 40px;
        background: rgba(255, 255, 255, 0.95);
        color: #E7457D;
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        backdrop-filter: blur(10px);
    }
    
    .story-content {
        flex: 1;
        padding: 90px 70px;
        background: #fafafa;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }
    
    
    .story-name {
        font-size: 54px;
        font-weight: 700;
        color: #1d1d1f;
        margin-bottom: 16px;
        letter-spacing: -0.02em;
    }
    
    .story-age {
        font-size: 18px;
        color: #E7457D;
        font-weight: 600;
        margin-bottom: 32px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }
    
    .story-quote {
        font-size: 28px;
        color: #86868b;
        font-style: italic;
        margin-bottom: 32px;
        line-height: 1.3;
        font-weight: 300;
        position: relative;
        padding-left: 40px;
    }
    
    .story-quote::before {
        content: '"';
        position: absolute;
        left: 0;
        top: -10px;
        font-size: 60px;
        color: #E7457D;
        opacity: 0.3;
        font-family: serif;
    }
    
    .story-description {
        font-size: 18px;
        color: #1d1d1f;
        line-height: 1.6;
        margin-bottom: 48px;
    }
    
    .story-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 32px;
        border-top: 1px solid #e9ecef;
    }
    
    .charity-info {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: #86868b;
        font-weight: 500;
    }
    
    .charity-heart {
        color: #E7457D;
        font-size: 18px;
    }
    
    .story-price {
        font-size: 34px;
        font-weight: 700;
        color: #1d1d1f;
    }
    
    /* Stories Carousel */
    .stories-carousel-section {
        padding: 140px 0;
        background: #ffffff;
    }
    
    .stories-header {
        text-align: center;
        margin-bottom: 100px;
        padding: 0 40px;
    }
    
    .stories-title {
        font-size: 62px;
        font-weight: 100;
        color: #1d1d1f;
        margin-bottom: 24px;
        letter-spacing: -0.04em;
    }
    
    .stories-subtitle {
        font-size: 22px;
        color: #86868b;
        font-weight: 300;
    }
    
    .stories-carousel-container {
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
        overflow: hidden;
    }
    
    .stories-carousel-wrapper {
        display: flex;
        transition: transform 0.6s ease;
        width: 300%;
    }
    
    .story-slide {
        flex: 1;
        height: 450px;
        background-size: cover;
        background-position: center;
        position: relative;
        cursor: pointer;
        margin: 0 10px;
    }
    
    .story-slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.8));
    }
    
    .story-slide-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        color: white;
        padding: 40px 35px;
        z-index: 2;
    }
    
    .story-slide-name {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    .story-slide-age {
        font-size: 16px;
        color: #E7457D;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 16px;
    }
    
    .story-slide-quote {
        font-size: 18px;
        font-style: italic;
        opacity: 0.9;
        line-height: 1.4;
    }
    
    .story-nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        color: #333;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .story-nav-arrow:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
    }
    
    .story-nav-arrow.prev {
        left: 20px;
    }
    
    .story-nav-arrow.next {
        right: 20px;
    }
    
    .stories-navigation {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 40px;
    }
    
    .story-nav-btn {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid #E7457D;
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .story-nav-btn.active {
        background: #E7457D;
    }
    
    .story-nav-btn:hover {
        transform: scale(1.2);
    }
    
    /* Mobile responsive for stories carousel */
    @media (max-width: 768px) {
        .stories-carousel-section {
            padding: 80px 0;
        }
        
        .stories-header {
            margin-bottom: 60px;
        }
        
        .stories-title {
            font-size: 42px;
        }
        
        .stories-subtitle {
            font-size: 18px;
        }
        
        .story-slide {
            height: 350px;
            margin: 0 5px;
        }
        
        .story-slide-info {
            padding: 30px 25px;
        }
        
        .story-slide-name {
            font-size: 24px;
        }
        
        .story-slide-quote {
            font-size: 16px;
        }
        
        .story-nav-arrow {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }
        
        .story-nav-arrow.prev {
            left: 10px;
        }
        
        .story-nav-arrow.next {
            right: 10px;
        }
    }
    
    /* Testimonials Section */
    .testimonials-section {
        background: #f8f9fa;
        padding: 120px 0;
        position: relative;
        overflow: hidden;
    }
    
    .testimonials-header {
        text-align: center;
        margin-bottom: 80px;
        padding: 0 40px;
    }
    
    .testimonials-title {
        font-size: 58px;
        font-weight: 100;
        color: #1d1d1f;
        margin-bottom: 24px;
        letter-spacing: -0.04em;
    }
    
    .testimonials-subtitle {
        font-size: 22px;
        color: #86868b;
        font-weight: 300;
    }
    
    .testimonials-carousel-wrapper {
        position: relative;
        height: 380px;
        overflow: hidden;
        mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
        -webkit-mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    }
    
    .testimonials-carousel {
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .testimonials-track {
        display: flex;
        align-items: center;
        animation: scrollTestimonials 40s linear infinite;
        gap: 40px;
        will-change: transform;
    }
    
    .testimonial-card {
        flex: none;
        width: 420px;
        background: white;
        border-radius: 0;
        padding: 40px;
        margin-right: 40px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        position: relative;
        min-height: 280px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    }
    
    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 30px;
        font-size: 120px;
        color: rgba(231, 69, 125, 0.08);
        font-family: serif;
        line-height: 1;
    }
    
    .testimonial-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .testimonial-quote {
        font-size: 18px;
        color: #333;
        line-height: 1.5;
        font-style: italic;
        font-weight: 300;
        flex: 1;
        margin-bottom: 20px;
        word-wrap: break-word;
    }
    
    .testimonial-author {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e9ecef;
    }
    
    .author-name {
        font-size: 16px;
        font-weight: 600;
        color: #1d1d1f;
        margin-bottom: 4px;
    }
    
    .child-info {
        font-size: 14px;
        color: #E7457D;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    @keyframes scrollTestimonials {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    /* Parallax Section */
    .parallax-section {
        height: 100vh;
        background-image: url('https://jbmediaau.blob.core.windows.net/static-images/banners/banner-2-after.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .parallax-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }
    
    .parallax-content {
        text-align: center;
        color: white;
        z-index: 2;
        position: relative;
        max-width: 900px;
        padding: 0 40px;
    }
    
    .parallax-badge {
        display: inline-block;
        padding: 12px 32px;
        background: rgba(231, 69, 125, 0.9);
        color: white;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 40px;
    }
    
    .parallax-title {
        font-size: 72px;
        font-weight: 100;
        margin-bottom: 32px;
        letter-spacing: -0.04em;
        line-height: 0.95;
    }
    
    .parallax-subtitle {
        font-size: 26px;
        font-weight: 300;
        margin-bottom: 48px;
        line-height: 1.4;
    }
    
    .parallax-actions {
        display: flex;
        gap: 24px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .parallax-btn {
        display: inline-block;
        padding: 18px 48px;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .parallax-btn-primary {
        background: #E7457D;
        color: white;
    }
    
    .parallax-btn-primary:hover {
        background: #d63c70;
        transform: translateY(-3px);
        text-decoration: none;
        color: white;
    }
    
    .parallax-btn-secondary {
        background: transparent;
        border: 2px solid white;
        color: white;
    }
    
    .parallax-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
        text-decoration: none;
        color: white;
    }
    
    @media (max-width: 768px) {
        .split-hero {
            flex-direction: column;
            min-height: 100vh;
            height: auto;
        }
        
        .split-left {
            flex: 1;
            padding: 60px 30px 40px;
            order: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .split-right {
            flex: 1.2;
            order: 1;
            transform: translateY(0);
            animation: none;
            min-height: 55vh;
        }
        
        .hero-content {
            max-width: 100%;
            text-align: center;
        }
        
        .hero-title {
            font-size: 42px;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }
        
        .hero-subtitle {
            font-size: 18px;
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .hero-cta {
            padding: 14px 32px;
            font-size: 15px;
        }
        
        .story-item {
            flex-direction: column !important;
            min-height: auto;
        }
        
        .story-image {
            height: 400px;
            min-height: 400px;
            width: 100%;
            background-size: cover !important;
            background-position: center !important;
        }
        
        .story-content {
            padding: 70px 40px;
        }
        
        .story-name {
            font-size: 40px;
        }
        
        .story-quote {
            font-size: 22px;
        }
        
        .story-meta {
            flex-direction: column;
            gap: 24px;
            align-items: flex-start;
        }
        
        .parallax-section {
            background-attachment: scroll;
        }
        
        .parallax-title {
            font-size: 48px;
        }
        
        .parallax-actions {
            flex-direction: column;
            align-items: center;
        }
        
        .parallax-btn {
            width: 280px;
            text-align: center;
        }
        
        .stats-hero {
            min-height: 70vh;
        }
        
        .stats-title {
            font-size: 28px;
            margin-bottom: 12px;
        }
        
        .stats-subtitle {
            font-size: 14px;
            margin-bottom: 25px;
        }
        
        .stats-grid {
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .stat-number {
            font-size: 22px;
            margin-bottom: 6px;
        }
        
        .stat-label {
            font-size: 10px;
        }
        
        .stat-item {
            padding: 15px 10px;
        }
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 28px;
            margin-bottom: 4px;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 12px;
            line-height: 1.2;
        }
        
        
        .seen-on-section {
            padding: 60px 20px !important;
        }
        
        .seen-on-title {
            font-size: 24px !important;
            margin-bottom: 8px !important;
        }
        
        .seen-on-subtitle {
            font-size: 12px !important;
        }
        
        .seen-on-header {
            margin-bottom: 20px !important;
        }
        
        .logo-carousel-wrapper {
            height: 45px !important;
            max-width: 100% !important;
        }
        
        .logo-track {
            gap: 40px;
        }
        
        .logo-item {
            min-width: 120px;
            height: 40px;
        }
        
        .logo-netflix {
            font-size: 24px;
        }
        
        .testimonials-section {
            padding: 80px 20px;
        }
        
        .testimonials-header {
            margin-bottom: 60px;
        }
        
        .testimonials-title {
            font-size: 42px;
            margin-bottom: 16px;
        }
        
        .testimonials-subtitle {
            font-size: 18px;
        }
        
        .testimonials-carousel-wrapper {
            height: 360px;
        }

        .testimonial-card {
            width: 320px;
            padding: 30px;
            min-height: 260px;
            height: auto;
            margin-right: 30px;
        }

        .testimonial-card::before {
            font-size: 80px;
            top: -5px;
            left: 20px;
        }

        .testimonial-quote {
            font-size: 16px;
        }
        
        .author-name {
            font-size: 15px;
        }
        
        .child-info {
            font-size: 13px;
        }
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        /* Mobile: Social Proof Section */
        .hero-social-proof {
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .hero-social-proof .proof-stats {
            gap: 12px;
        }

        .hero-social-proof .stat-number {
            font-size: 20px;
        }

        .hero-social-proof .stat-stars {
            font-size: 12px;
        }

        .hero-social-proof .stat-divider {
            height: 32px;
        }

        .hero-social-proof .trust-avatar {
            width: 30px;
            height: 30px;
        }
    }


/* === Singapore "Coming Soon" countdown — extracted from Index.cshtml === */
            .js-coming-soon-container {
                text-align: center;
                background-color: rgba(255, 255, 255, 0.1);
                padding: 0px 30px;
                border-radius: 10px;
                max-width: 600px;
                width: 90%;
                margin: auto;
            }

            .js-logo {
                font-size: 3em;
                margin: 20px 0;
                color: #fff;
                letter-spacing: 2px;
            }

            .js-heading {
                font-size: 2em;
                margin: 10px 0;
                color: #fff;
                font-weight: 400;
                letter-spacing: 1px;
            }

            .js-description {
                font-size: 1.2em;
                margin: 20px 0 40px;
                color: #808080;
                line-height: 1.6;
            }

            .js-countdown {
                display: flex;
                justify-content: space-around;
                gap: 20px;
                font-size: 1.5em;
                color: #fff;
                margin-top: 20px;
            }

            .js-countdown-item {
                text-align: center;
            }

                .js-countdown-item span:first-child {
                    display: block;
                    font-size: 2em;
                    font-weight: bold;
                    color: #e7457d;
                    margin-bottom: 5px;
                }
