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

        :root {--primary: #8b5cf6; --primary-dark: #7c3aed;--secondary: #ec4899;--accent-cyan: #06b6d4;--accent-orange: #fb923c;--dark: #0a0e1a;--light: #f8fafc;--gray: #64748b;--gradient: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 50%, #ec4899 100%);--gradient-2: linear-gradient(135deg, #fb923c 0%, #ec4899 100%);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;line-height: 1.6;color: #e2e8f0;overflow-x: hidden;background: #0a0e1a;
        }

        /* Header & Navigation */
        header {position: fixed;top: 0;width: 100%;background: rgba(10, 14, 26, 0.95);backdrop-filter: blur(10px);z-index: 1000;
            box-shadow: 0 2px 20px rgba(139, 92, 246, 0.3);
            transition: all 0.3s ease;
        }

        .top-bar {
            background: var(--gradient);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .top-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: flex-end;
            gap: 30px;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .top-bar a:hover {
            opacity: 0.8;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        .logo-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            cursor: pointer;
            border: none;
            font-size: 16px;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

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

        /* Hero Section */
        .hero {
            margin-top: 120px;
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::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="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-ctas {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .hero-stats {
            margin-top: 60px;
            display: flex;
            gap: 40px;
            justify-content: center;
            flex-wrap: wrap;
            font-size: 14px;
            opacity: 0.9;
        }

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

        /* Section Styles */
        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background: #0a0e1a;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 42px;
            margin-bottom: 15px;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 18px;
            color: #94a3b8;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Programs Grid */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .program-card {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
            transition: all 0.3s;
            border: 1px solid rgba(139, 92, 246, 0.3);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
        }

        .program-card:hover::before {
            transform: scaleX(1);
        }

        .program-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #f1f5f9;
        }

        .program-card p {
            color: #94a3b8;
            margin-bottom: 25px;
            font-size: 15px;
        }

        .program-meta {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .program-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #94a3b8;
        }

        .program-meta span::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
        }

        /* Steps Section */
        .steps-container {
            display: grid;
            gap: 30px;
        }

        .step {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 30px;
            padding: 30px;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(139, 92, 246, 0.2);
            transition: all 0.3s;
            border: 1px solid rgba(139, 92, 246, 0.2);
            backdrop-filter: blur(10px);
        }

        .step:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .step-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #f1f5f9;
        }

        .step-content p {
            color: #94a3b8;
            line-height: 1.7;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .feature {
            padding: 25px;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 12px;
            border-left: 4px solid var(--primary);
            transition: all 0.3s;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .feature:hover {
            background: rgba(139, 92, 246, 0.15);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
            transform: translateY(-5px);
            border-left-color: var(--accent-cyan);
        }

        .feature h4 {
            font-size: 18px;
            margin-bottom: 8px;
            color: #f1f5f9;
        }

        .feature p {
            color: #94a3b8;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Universities Grid */
        .universities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .university-card {
            background: black;
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 5px 25px rgba(139, 92, 246, 0.2);
            transition: all 0.3s;
            text-align: center;
            border: 1px solid rgba(139, 92, 246, 0.3);
            backdrop-filter: blur(10px);
        }

        .university-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
        }

        .university-card h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #f1f5f9;
        }

        .university-location {
            color: #94a3b8;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .university-programs {
            list-style: none;
            margin: 20px 0;
            text-align: left;
        }

        .university-programs li {
            padding: 8px 0;
            color: #94a3b8;
            font-size: 14px;
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        .university-programs li::before {
            content: '→ ';
            color: var(--primary);
            font-weight: bold;
            margin-right: 8px;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: 0 2px 15px rgba(139, 92, 246, 0.2);
            overflow: hidden;
            border: 1px solid rgba(139, 92, 246, 0.2);
            backdrop-filter: blur(10px);
        }

        .faq-question {
            padding: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 18px;
            color: #f1f5f9;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: rgba(139, 92, 246, 0.2);
        }

        .faq-question::after {
            content: '+';
            font-size: 28px;
            color: var(--primary);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 25px 25px;
            color: #94a3b8;
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient);
            color: white;
            text-align: center;
            border-radius: 20px;
            padding: 80px 40px;
            margin: 80px 20px;
        }

        .cta-section h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

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

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255,255,255,0.3);
        }

        .trust-line {
            margin-top: 30px;
            font-size: 14px;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h4 {
            margin-bottom: 20px;
            font-size: 18px;
        }

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

        .footer-column a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            padding: 8px 0;
            transition: color 0.3s;
        }

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

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }

        .disclaimer {
            margin-top: 20px;
            font-size: 12px;
            line-height: 1.6;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #e2e8f0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .step {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .step-number {
                margin: 0 auto;
            }

            .programs-grid,
            .universities-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }