        /* ================= BASE STYLES ================= */
        :root {
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-800: #1e293b;
            --slate-900: #0f172a;
            --blue-50: #eff6ff;
            --blue-100: #dbeafe;
            --blue-400: #60a5fa;
            --blue-600: #2563eb;
            --blue-700: #1d4ed8;
            --white: #ffffff;
            --hero-bg-start: #011f72;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--slate-50);
            color: var(--slate-900);
            line-height: 1.5;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        @media (min-width: 640px) { .container { padding: 0 1.5rem; } }
        @media (min-width: 1024px) { .container { padding: 0 2rem; } }

        /* ================= HERO SECTION ================= */
        .hero-section {
            background: linear-gradient(135deg, var(--hero-bg-start) 0%, var(--white) 100%);
            color: var(--white);
            padding: 4rem 0;
            position: relative;
        }

        @media (min-width: 1024px) { .hero-section { padding: 6rem 0; } }

        .hero-grid {
            display: grid;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        @media (min-width: 1024px) { .hero-grid { grid-template-columns: repeat(2, 1fr); } }

        .hero-title {
            font-size: 2.25rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) { .hero-title { font-size: 3rem; } }
        @media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--blue-100);
            margin-bottom: 2rem;
            max-width: 36rem;
            line-height: 1.625;
        }

        .hero-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        @media (min-width: 640px) { .hero-features { flex-direction: row; } }

        .hero-feature-badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 500;
        }

        .hero-icon-wrap {
            background: var(--blue-400);
            padding: 0.5rem;
            border-radius: 9999px;
            display: flex;
        }

        .hero-icon-wrap svg {
            width: 1.25rem;
            height: 1.25rem;
            color: var(--white);
        }

        .hero-btn {
            background: var(--white);
            color: var(--blue-700);
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            font-weight: 700;
            font-size: 1.125rem;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border: none;
            cursor: pointer;
        }

        .hero-btn:hover { background: var(--blue-50); }

        /* ================= SHARED SECTION STYLES ================= */
        .section-padding { padding: 5rem 0; }
        .bg-white { background-color: var(--white); }
        .text-center { text-align: center; }
        .mb-16 { margin-bottom: 4rem; }

        .section-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--slate-900);
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) { .section-title { font-size: 2.25rem; } }

        .section-subtitle {
            color: var(--slate-600);
            max-width: 42rem;
            margin: 0 auto;
        }

        /* ================= WHY SECTION ================= */
        .features-grid {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

        .feature-card {
            padding: 1.5rem;
            background-color: var(--slate-50);
            border-radius: 1rem;
            border: 1px solid var(--slate-100);
            transition: background-color 0.3s ease;
        }

        .feature-card:hover { background-color: var(--blue-50); }

        .feature-icon {
            width: 3rem;
            height: 3rem;
            background: var(--white);
            border-radius: 0.75rem;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.25rem;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon { transform: scale(1.1); }
        .feature-title { font-weight: 700; color: var(--slate-800); margin-bottom: 0.5rem; }
        .feature-desc { font-size: 0.875rem; color: var(--slate-500); line-height: 1.625; }

        /* ================= BENEFITS SECTION ================= */
        .benefits-section {
            background-color: var(--slate-900);
            color: var(--white);
        }

        .benefits-grid {
            display: grid;
            gap: 4rem;
            align-items: center;
        }

        @media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }

        .benefits-title {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        @media (min-width: 768px) { .benefits-title { font-size: 2.25rem; } }

        .benefits-text { color: var(--slate-300); line-height: 1.625; margin-bottom: 1.5rem; }
        .text-blue { color: var(--blue-400); font-weight: 700; }

        .benefits-btn {
            background-color: var(--blue-600);
            color: var(--white);
            padding: 0.75rem 2rem;
            border-radius: 0.75rem;
            font-weight: 600;
            display: inline-block;
            transition: background-color 0.3s ease;
            margin-top: 1rem;
        }

        .benefits-btn:hover { background-color: var(--blue-700); }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 1rem;
            text-align: center;
        }

        .stat-value {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--blue-400);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--slate-400);
        }

        /* ================= PROGRAM SECTION ================= */
        .program-label {
            color: var(--blue-600);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.875rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .program-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) { .program-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .program-grid { grid-template-columns: repeat(3, 1fr); } }

        .program-card {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background-color: var(--slate-50);
            border-radius: 1rem;
            border: 1px solid var(--slate-100);
        }

        .program-number {
            flex-shrink: 0;
            width: 2.5rem;
            height: 2.5rem;
            background-color: var(--blue-100);
            color: var(--blue-600);
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
