@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

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

        body {
            font-family: 'Nunito', sans-serif;
            color: #374151;
            background: #ffffff;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(12px);
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
            z-index: 1000;
            padding: 0 2rem;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.4rem;
            color: #059669;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #059669, #10b981);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
        }

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

        .nav-links a {
            text-decoration: none;
            color: #4b5563;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.2s;
            padding: 0.4rem 0;
        }

        .nav-links a:hover {
            color: #059669;
        }

        .btn-apply {
            background: linear-gradient(135deg, #059669, #10b981);
            color: white !important;
            padding: 0.6rem 1.6rem;
            border-radius: 50px;
            font-weight: 700;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-apply:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(5, 150, 105, 0.35);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .hamburger span {
            width: 26px;
            height: 3px;
            background: #374151;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            padding: 8rem 2rem 5rem;
            background: linear-gradient(165deg, #f0fdf4 0%, #ecfdf5 40%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(5, 150, 105, 0.1);
            color: #059669;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: 3.6rem;
            font-weight: 800;
            color: #111827;
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            color: #059669;
            position: relative;
        }

        .hero p {
            font-size: 1.15rem;
            color: #6b7280;
            margin-bottom: 2.5rem;
            max-width: 520px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #059669, #10b981);
            color: white;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s, box-shadow 0.2s;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(5, 150, 105, 0.35);
        }

        .btn-secondary {
            background: white;
            color: #374151;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid #e5e7eb;
            transition: all 0.2s;
        }

        .btn-secondary:hover {
            border-color: #059669;
            color: #059669;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #059669;
        }

        .stat-label {
            font-size: 0.85rem;
            color: #9ca3af;
            font-weight: 600;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-card {
            width: 100%;
            max-width: 480px;
            aspect-ratio: 4/5;
            background: linear-gradient(145deg, #d1fae5, #a7f3d0);
            border-radius: 32px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image-card .school-icon {
            font-size: 6rem;
            opacity: 0.5;
        }

        .floating-card {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 1rem 1.4rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 3s ease-in-out infinite;
        }

        .floating-card:nth-child(2) {
            top: 15%;
            right: -10%;
            animation-delay: 0.5s;
        }

        .floating-card:nth-child(3) {
            bottom: 20%;
            left: -5%;
            animation-delay: 1s;
        }

        .floating-card:nth-child(4) {
            bottom: 5%;
            right: 0;
            animation-delay: 1.5s;
        }

        .floating-card .icon-circle {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .floating-card .card-text strong {
            display: block;
            font-size: 0.9rem;
            color: #111827;
        }

        .floating-card .card-text span {
            font-size: 0.78rem;
            color: #9ca3af;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }

        .section-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            display: inline-block;
            background: rgba(5, 150, 105, 0.1);
            color: #059669;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #111827;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Programs Section */
        .programs {
            background: #f9fafb;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .program-card {
            background: white;
            border-radius: 24px;
            padding: 2.5rem 2rem;
            transition: all 0.3s;
            border: 1px solid #f3f4f6;
            position: relative;
            overflow: hidden;
        }

        .program-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            border-color: transparent;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            border-radius: 24px 24px 0 0;
        }

        .program-card:nth-child(1)::before { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
        .program-card:nth-child(2)::before { background: linear-gradient(90deg, #34d399, #10b981); }
        .program-card:nth-child(3)::before { background: linear-gradient(90deg, #60a5fa, #3b82f6); }
        .program-card:nth-child(4)::before { background: linear-gradient(90deg, #a78bfa, #8b5cf6); }

        .program-icon {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .program-card:nth-child(1) .program-icon { background: #fef3c7; }
        .program-card:nth-child(2) .program-icon { background: #d1fae5; }
        .program-card:nth-child(3) .program-icon { background: #dbeafe; }
        .program-card:nth-child(4) .program-icon { background: #ede9fe; }

        .program-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.6rem;
        }

        .program-card .age-range {
            font-size: 0.85rem;
            color: #059669;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .program-card p {
            font-size: 0.95rem;
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .program-card ul {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .program-card ul li {
            font-size: 0.9rem;
            color: #4b5563;
            padding: 0.35rem 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .program-card ul li::before {
            content: '✓';
            color: #059669;
            font-weight: 700;
            font-size: 0.8rem;
        }

        .program-link {
            color: #059669;
            font-weight: 700;
            text-decoration: none;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }

        .program-link:hover {
            gap: 10px;
        }

        /* Campus Life Section */
        .campus-life {
            background: white;
        }

        .campus-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .campus-card {
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 3/4;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .campus-card:hover {
            transform: translateY(-6px);
        }

        .campus-card-bg {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            opacity: 0.3;
        }

        .campus-card:nth-child(1) .campus-card-bg { background: linear-gradient(135deg, #059669, #34d399); }
        .campus-card:nth-child(2) .campus-card-bg { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
        .campus-card:nth-child(3) .campus-card-bg { background: linear-gradient(135deg, #2563eb, #60a5fa); }
        .campus-card:nth-child(4) .campus-card-bg { background: linear-gradient(135deg, #d97706, #fbbf24); }

        .campus-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
            color: white;
        }

        .campus-card-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }

        .campus-card-content p {
            font-size: 0.9rem;
            opacity: 0.85;
            line-height: 1.6;
        }

        .campus-card-content .activity-count {
            display: inline-block;
            margin-top: 0.8rem;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(8px);
            padding: 0.3rem 0.9rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        /* Testimonials */
        .testimonials {
            background: #f0fdf4;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .testimonial-card {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            position: relative;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
        }

        .testimonial-card .quote-icon {
            font-size: 2.5rem;
            color: #d1fae5;
            margin-bottom: 1rem;
        }

        .testimonial-card p {
            font-size: 1rem;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .author-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
        }

        .testimonial-card:nth-child(1) .author-avatar { background: linear-gradient(135deg, #059669, #10b981); }
        .testimonial-card:nth-child(2) .author-avatar { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
        .testimonial-card:nth-child(3) .author-avatar { background: linear-gradient(135deg, #d97706, #fbbf24); }

        .author-info strong {
            display: block;
            font-size: 1rem;
            color: #111827;
        }

        .author-info span {
            font-size: 0.85rem;
            color: #9ca3af;
        }

        .testimonial-stars {
            color: #fbbf24;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        /* Quick Facts */
        .quick-facts {
            background: linear-gradient(135deg, #059669, #10b981);
            color: white;
        }

        .quick-facts .section-tag {
            background: rgba(255,255,255,0.2);
            color: white;
        }

        .quick-facts .section-header h2 {
            color: white;
        }

        .quick-facts .section-header p {
            color: rgba(255,255,255,0.8);
        }

        .facts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .fact-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.12);
            border-radius: 24px;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.15);
            transition: all 0.3s;
        }

        .fact-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-4px);
        }

        .fact-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .fact-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.3rem;
        }

        .fact-label {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 600;
        }

        /* CTA Section */
        .cta {
            background: white;
        }

        .cta-box {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
            border-radius: 32px;
            padding: 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid #d1fae5;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(5,150,105,0.1), transparent);
            border-radius: 50%;
        }

        .cta-box h2 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #111827;
            margin-bottom: 1rem;
            position: relative;
        }

        .cta-box p {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 2rem;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            position: relative;
        }

        .cta-contact-info {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            font-size: 0.9rem;
            color: #6b7280;
            position: relative;
        }

        .cta-contact-info span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Footer */
        footer {
            background: #111827;
            color: #9ca3af;
            padding: 5rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-brand .logo {
            color: white;
            margin-bottom: 1rem;
        }

        .footer-brand .logo-icon {
            background: linear-gradient(135deg, #059669, #10b981);
        }

        .footer-brand p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            text-decoration: none;
            transition: all 0.2s;
            font-size: 0.9rem;
        }

        .footer-social a:hover {
            background: #059669;
            color: white;
        }

        .footer-col h4 {
            color: white;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
        }

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

        .footer-col ul li {
            margin-bottom: 0.7rem;
        }

        .footer-col ul li a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: #10b981;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-bottom-links a:hover {
            color: #10b981;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-visual {
                display: none;
            }

            .programs-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .campus-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .facts-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.4rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

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

            .facts-grid {
                grid-template-columns: 1fr 1fr;
            }

            .cta-box {
                padding: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }
