        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            color: #1a1a1a;
            line-height: 1.0;
            overflow-x: hidden;
        }

        .hero-section {
            background: linear-gradient(135deg, #051d87 0%, #210042 100%);
            padding: 120px 20px 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.4;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, transparent, #ffffff);
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            color: white;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero-description {
            font-size: 1.25rem;
            opacity: 0.95;
            line-height: 1.8;
            margin-bottom: 48px;
            font-weight: 400;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 32px;
            max-width: 700px;
            margin: 0 auto;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            padding: 24px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 8px;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 500;
        }

        .programs-section {
            padding: 100px 20px;
            background: #ffffff;
        }

        .programs-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-tag {
            color: #667eea;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: #1a1a1a;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 32px;
        }

        .program-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .program-card:hover::before {
            transform: scaleX(1);
        }

        .program-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            border-color: #667eea;
        }

        .program-card.featured {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
        }

        .program-card.featured::before {
            background: white;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .program-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            background: #f3f4f6;
        }

        .program-card.featured .program-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .icon-creativity { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); }
        .icon-internship { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
        .icon-alumni { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
        .icon-mentorship { background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); }
        .icon-scholarships { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
        .icon-podcast { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }

        .program-badge {
            background: #f3f4f6;
            color: #1a1a1a;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .program-card.featured .program-badge {
            background: rgba(255, 255, 255, 0.25);
            color: white;
        }

        .program-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1a1a1a;
        }

        .program-card.featured .program-title {
            color: white;
        }

        .program-description {
            font-size: 1rem;
            line-height: 1.7;
            color: #666;
            margin-bottom: 24px;
        }

        .program-card.featured .program-description {
            color: rgba(255, 255, 255, 0.9);
        }

        .program-features {
            margin-bottom: 32px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            color: #555;
        }

        .program-card.featured .feature-item {
            color: rgba(255, 255, 255, 0.95);
        }

        .feature-item .material-symbols-outlined {
            font-size: 20px;
            opacity: 0.8;
        }

        .program-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #1625a5;
            color: white;
            padding: 14px 28px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .program-cta:hover {
            background: #5a6fd8;
            transform: translateX(4px);
        }

        .program-card.featured .program-cta {
            background: white;
            color: #667eea;
        }

        .program-card.featured .program-cta:hover {
            background: #f9fafb;
        }

        .journey-section {
            padding: 100px 20px;
            background: #f9fafb;
        }

        .journey-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .journey-timeline {
            margin-top: 64px;
            position: relative;
        }

        .timeline-item {
            display: flex;
            gap: 32px;
            margin-bottom: 48px;
            position: relative;
        }

        .timeline-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 32px;
            top: 80px;
            bottom: -48px;
            width: 2px;
            background: linear-gradient(to bottom, #667eea, #e5e7eb);
        }

        .timeline-number {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #01115a, #0324ab);
            color: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .timeline-content {
            flex: 1;
            background: white;
            padding: 32px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e5e7eb;
        }

        .timeline-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a1a1a;
        }

        .timeline-description {
            color: #666;
            line-height: 1.7;
            font-size: 1rem;
        }

        .cta-section {
            padding: 20px 10px;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 2.75rem;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .cta-description {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 48px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 64px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: white;
            color: #041c88;
        }

        .btn-primary:hover {
            background: #f9fafb;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        .cta-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 24px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
        }

        .feature-card .material-symbols-outlined {
            font-size: 32px;
            margin-bottom: 12px;
            color: #fbbf24;
        }

        .feature-card span {
            display: block;
            font-weight: 600;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .programs-grid {
                grid-template-columns: 1fr;
            }

            .timeline-item {
                flex-direction: column;
            }

            .timeline-item::after {
                display: none;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.8s ease-out forwards;
        }