
        :root {
            --primary: #6c5ce7;
            --secondary: #00cec9;
            --dark: #2d3436;
            --light: #f5f6fa;
            --accent: #fd79a8;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        header.scrolled {
            padding: 15px 0;
            background-color: rgba(255, 255, 255, 0.98);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* New Hero Section Styles */
        .hero {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        .hero-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            position: relative;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: var(--glass);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 20px;
            border: 1px solid rgba(37, 99, 235, 0.2);
        }

        .hero-badge i {
            margin-right: 8px;
            font-size: 16px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            line-height: 1.6;
            color: #334155;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 5px rgba(15, 23, 42, 0.05);
        }

        .btn-secondary:hover {
            background: #f1f5f9;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
        }

        .hero-stats {
            display: flex;
            gap: 30px;
        }

        .stat-item {
            display: flex;
            align-items: center;
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            background: var(--glass);
            backdrop-filter: blur(5px);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: var(--primary);
            border: 1px solid rgba(37, 99, 235, 0.1);
        }

        .stat-text strong {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            display: block;
            line-height: 1.3;
        }

        .stat-text span {
            font-size: 14px;
            color: #64748b;
        }

        .hero-image {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .device-mockup {
            width: 100%;
            max-width: 500px;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 20px 40px rgba(6, 182, 212, 0.2));
            animation: float 8s ease-in-out infinite;
        }

        .brainwaves {
            position: absolute;
            width: 600px;
            height: 600px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.05) 50%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        .brainwaves::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
            animation: pulse 6s ease-in-out infinite;
        }

        .brainwaves::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
            animation: pulse 8s ease-in-out infinite;
            animation-delay: 1s;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        @keyframes pulse {
            0% { transform: scale(0.8); opacity: 0.8; }
            50% { transform: scale(1.1); opacity: 0.4; }
            100% { transform: scale(0.8); opacity: 0.8; }
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            background: var(--glass);
            backdrop-filter: blur(2px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            animation: float 10s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            background: rgba(37, 99, 235, 0.05);
        }

        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            bottom: 15%;
            left: 5%;
            animation-delay: 2s;
            background: rgba(6, 182, 212, 0.05);
        }

        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 30%;
            right: 10%;
            animation-delay: 4s;
            background: rgba(236, 72, 153, 0.05);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                padding: 120px 40px 80px;
                gap: 40px;
            }
            
            .hero-content {
                text-align: center;
                margin: 0 auto;
            }
            
            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .hero-image {
                margin-top: 40px;
            }
        }

        @media (max-width: 768px) {
            .hero-container {
                padding: 100px 20px 60px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-cta {
                flex-direction: column;
                gap: 12px;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            
            .hero-stats {
                flex-wrap: wrap;
            }
            
            .device-mockup {
                max-width: 400px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-badge {
                font-size: 12px;
            }
            
            .stat-text strong {
                font-size: 16px;
            }
        }

        /* Section Styles */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

         /* Mission Section Styles */
    .mission {
        background-color: white;
        padding: 100px 0;
        position: relative;
    }
    
    .mission-content {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 60px;
    }
    
    .mission-text {
        flex: 1;
        min-width: 300px;
    }
    
    .mission-text h3 {
        font-size: 2rem;
        margin-bottom: 25px;
        color: var(--primary);
        line-height: 1.3;
    }
    
    .mission-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 30px;
    }
    
    .mission-features {
        margin: 40px 0;
    }
    
    .feature {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        background: rgba(37, 99, 235, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .feature-text h4 {
        font-size: 1.2rem;
        margin-bottom: 8px;
        color: var(--dark);
    }
    
    .feature-text p {
        font-size: 1rem;
        color: #666;
        margin-bottom: 0;
        line-height: 1.6;
    }
    
    .mission-stats {
        display: flex;
        gap: 30px;
        margin: 40px 0;
    }
    
    .stat {
        text-align: center;
        padding: 20px;
        border-radius: 12px;
        background: rgba(6, 182, 212, 0.05);
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: #666;
    }
    
    .mission-image {
        flex: 1;
        min-width: 300px;
        position: relative;
    }
    
    .image-container {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .image-container img {
        width: 100%;
        display: block;
    }
    
    .data-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .data-point {
        position: absolute;
        transform: translate(-50%, -50%);
    }
    
    .pulse {
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.8);
        border: 2px solid var(--primary);
        border-radius: 50%;
        position: relative;
    }
    
    .pulse::after {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: rgba(37, 99, 235, 0.3);
        border-radius: 50%;
        animation: pulse 2s infinite;
        z-index: -1;
    }
    
    .label {
        position: absolute;
        white-space: nowrap;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        background: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    .mission-partners {
        margin-top: 40px;
    }
    
    .mission-partners p {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .partner-logos {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .partner-logos img {
        height: 30px;
        opacity: 0.7;
        transition: opacity 0.3s;
    }
    
    .partner-logos img:hover {
        opacity: 1;
    }
    
    @keyframes pulse {
        0% { transform: scale(0.8); opacity: 0.8; }
        70% { transform: scale(1.3); opacity: 0; }
        100% { transform: scale(0.8); opacity: 0; }
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .mission-content {
            flex-direction: column;
        }
        
        .mission-text, .mission-image {
            width: 100%;
        }
        
        .mission-stats {
            justify-content: center;
        }
    }
    
    @media (max-width: 768px) {
        .mission-text h3 {
            font-size: 1.8rem;
        }
        
        .feature {
            flex-direction: column;
            gap: 10px;
        }
        
        .mission-stats {
            flex-direction: column;
            gap: 15px;
        }
        
        .stat {
            width: 100%;
        }
    }

        /* Shared Section Styles */
    .section-header {
        text-align: center;
        margin-bottom: 60px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-subtitle {
        display: block;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--secondary);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: var(--dark);
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 1.1rem;
        color: #64748b;
        line-height: 1.6;
    }
    
    /* How It Works Section */
    .how-it-works {
        padding: 100px 0;
        background-color: #f8fafc;
    }
    
    .process-timeline {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        margin-bottom: 60px;
        position: relative;
    }
    
    .process-card {
        width: 22%;
        min-width: 220px;
        background: white;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        position: relative;
        z-index: 2;
        margin-bottom: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .process-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: rgba(37, 99, 235, 0.1);
        margin-bottom: 15px;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        background: rgba(37, 99, 235, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .process-icon img {
        width: 30px;
        height: 30px;
    }
    
    .process-title {
        font-size: 1.3rem;
        color: var(--dark);
        margin-bottom: 15px;
    }
    
    .process-description {
        font-size: 1rem;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .process-extra {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .extra-tag {
        background: rgba(6, 182, 212, 0.1);
        color: var(--secondary);
        font-size: 0.8rem;
        padding: 4px 10px;
        border-radius: 20px;
        font-weight: 500;
    }
    
    .process-connector {
        flex: 1;
        min-width: 50px;
        max-width: 100px;
        position: relative;
        top: 40px;
        display: flex;
        align-items: center;
        opacity: 0.5;
    }
    
    .connector-line {
        height: 2px;
        background: var(--secondary);
        flex-grow: 1;
    }
    
    .connector-arrow {
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 10px solid var(--secondary);
    }
    
    .process-video {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .video-container {
        display: flex;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .video-thumbnail {
        width: 60%;
        position: relative;
    }
    
    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .play-button:hover {
        background: white;
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    .video-description {
        width: 40%;
        padding: 30px;
    }
    
    .video-description h3 {
        font-size: 1.5rem;
        color: var(--dark);
        margin-bottom: 15px;
    }
    
    .video-description p {
        font-size: 1rem;
        color: #64748b;
        line-height: 1.6;
    }
    
    /* Features Section */
    .features {
        padding: 100px 0;
        background: white;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
    
    .feature-tabs {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-tab {
        padding: 15px 20px;
        background: transparent;
        border: none;
        border-radius: 8px;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #64748b;
        font-weight: 500;
    }
    
    .feature-tab i {
        font-size: 1.2rem;
    }
    
    .feature-tab:hover {
        background: rgba(37, 99, 235, 0.05);
        color: var(--primary);
    }
    
    .feature-tab.active {
        background: rgba(37, 99, 235, 0.1);
        color: var(--primary);
        font-weight: 600;
    }
    
    .feature-content {
        background: #f8fafc;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .feature-panel {
        display: none;
        grid-template-columns: 1fr 1fr;
        min-height: 400px;
    }
    
    .feature-panel.active {
        display: grid;
    }
    
    .panel-image {
        position: relative;
        overflow: hidden;
    }
    
    .panel-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .panel-text {
        padding: 40px;
    }
    
    .panel-text h3 {
        font-size: 1.8rem;
        color: var(--dark);
        margin-bottom: 20px;
    }
    
    .panel-text p {
        font-size: 1.1rem;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .feature-list {
        list-style: none;
    }
    
    .feature-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
    
    .feature-list i {
        color: var(--secondary);
        font-size: 1.1rem;
        margin-top: 3px;
    }
    
    /* Why It Matters Section */
    .why-matters {
        padding: 100px 0;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    }
    
    .impact-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .impact-stats {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .stat-card {
        flex: 1;
        background: white;
        border-radius: 16px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        min-width: 200px;
    }
    
    .stat-value {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 1rem;
        color: #64748b;
        line-height: 1.5;
    }
    
    .impact-story {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .story-image {
        position: relative;
    }
    
    .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .story-quote {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.8);
        color: white;
        padding: 30px;
    }
    
    .story-quote i {
        font-size: 1.5rem;
        color: var(--secondary);
        margin-bottom: 15px;
        display: block;
    }
    
    .story-quote blockquote {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 15px;
        font-style: italic;
    }
    
    .story-quote cite {
        font-size: 0.9rem;
        opacity: 0.8;
    }
    
    .story-content {
        padding: 40px;
    }
    
    .story-content h3 {
        font-size: 1.8rem;
        color: var(--dark);
        margin-bottom: 20px;
    }
    
    .story-content p {
        font-size: 1.1rem;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .impact-facts {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .fact {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .fact i {
        width: 40px;
        height: 40px;
        background: rgba(37, 99, 235, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.1rem;
    }
    
    /* Responsive Styles */
    @media (max-width: 1200px) {
        .process-timeline {
            justify-content: center;
            gap: 20px;
        }
        
        .process-card {
            width: 45%;
        }
        
        .process-connector {
            display: none;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
        
        .feature-tabs {
            flex-direction: row;
            overflow-x: auto;
            padding-bottom: 15px;
        }
    }
    
    @media (max-width: 992px) {
        .impact-story {
            grid-template-columns: 1fr;
        }
        
        .story-image {
            min-height: 300px;
        }
        
        .feature-panel {
            grid-template-columns: 1fr;
        }
        
        .panel-image {
            min-height: 300px;
        }
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
        
        .process-card {
            width: 100%;
            max-width: 400px;
        }
        
        .video-container {
            flex-direction: column;
        }
        
        .video-thumbnail, .video-description {
            width: 100%;
        }
        
        .impact-stats {
            flex-direction: column;
        }
    }
    
    @media (max-width: 576px) {
        .section-header {
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
    }

        /* CTA Section */
        .cta-section {
            text-align: center;
            background-color: white;
        }

        .cta-box {
            background: var(--gradient);
            padding: 60px;
            border-radius: 20px;
            color: white;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
        }

        .cta-box h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-box p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .white-button {
            background: white;
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .white-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .transparent-button {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .transparent-button:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .footer-logo i {
            margin-right: 10px;
            color: var(--secondary);
        }

        .footer-column p {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: white;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--secondary);
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-text {
                padding-right: 0;
                margin-bottom: 40px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .mission-content {
                flex-direction: column-reverse;
            }

            .step {
                min-width: 100%;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .white-button, .transparent-button {
                width: 100%;
                max-width: 250px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .cta-box {
                padding: 40px 20px;
            }

            .cta-box h2 {
                font-size: 2rem;
            }
        }