        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #4169E1;
            --primary-pink: #FF69B4;
            --light-pink: #FFB6D9;
            --dark-blue: #2F4F9E;
            --light-gray: #F8F9FA;
            --medium-gray: #E8EAED;
            --dark-gray: #202124;
            --text-primary: #202124;
            --text-secondary: #5F6368;
            --white: #FFFFFF;
            --success: #34A853;
            --border-radius: 16px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Navigation */
        nav {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            padding: 1rem 1.5rem;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 45px;
            display: flex;
            align-items: center;
        }

        .logo img {
            max-height: 100%;
            max-width: 200px;
            object-fit: contain;
        }
        .name { 
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-left: 10px;
        }

        .nav-links {
            display: none;
            list-style: none;
            gap: 2rem;
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            
        }
        /* Small screens */
        @media (max-width: 600px) {
            .name {
                font-size: 1rem;
                margin-left: 15px;
            }
            .nav-cta {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
                border-radius: 30px;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr;
            align-items: center;
            gap: 2rem;
            padding: 4rem 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .hero-content {
            z-index: 2;
        }

        .hero h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .hero-subheading {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .trust-points {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .trust-point {
            display: flex;
            gap: 1rem;
            align-items: center;
            font-weight: 500;
            color: var(--text-primary);
        }

        .trust-point::before {
            content: "✓";
            color: var(--success);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: white;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .btn-secondary:hover {
            background: var(--light-gray);
            transform: translateY(-2px);
        }

        .hero-image {
            max-height: 400px;
            background: linear-gradient(135deg, rgba(65, 105, 225, 0.1), rgba(255, 105, 180, 0.1));
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--text-secondary);
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
       .hero-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 20px;
       } 

        @media (min-width: 768px) {
            .hero {
                grid-template-columns: 1fr 1fr;
                padding: 6rem 2rem;
                gap: 4rem;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .hero-image {
                min-height: 500px;
            }

            .trust-points {
                grid-template-columns: 1fr 1fr;
            }

            .cta-buttons {
                flex-direction: row;
            }

            .btn {
                flex: 1;
            }
        }

        /* About Section */
        .about {
            padding: 4rem 1.5rem;
            background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: var(--text-primary);
        }

        .about-text {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.8;
            text-align: center;
        }

        /* Why Choose Us */
        .why-us {
            padding: 4rem 1.5rem;
            background: var(--white);
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            border: 1px solid var(--medium-gray);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
            width: 60px;
            height: 60px;
            color: var(--primary-blue);
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }

        .card-text {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        @media (min-width: 768px) {
            .why-us-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }

            @supports (display: grid) {
                .why-us-grid {
                    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                }
            }
        }

        @media (min-width: 1024px) {
            .why-us-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: 1.5rem;
            }

            .card {
                padding: 1.75rem;
            }

            .card-icon {
                font-size: 2rem;
            }

            .card-title {
                font-size: 1.1rem;
            }

            .card-text {
                font-size: 0.95rem;
            }
        }

        /* Curricula Section */
        .curricula {
            padding: 4rem 1.5rem;
            background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
        }

        .curricula-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .curriculum-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .curriculum-card:hover {
            border-color: var(--primary-blue);
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .curriculum-emoji {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .curriculum-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 1rem;
            display: block;
        }

        .curriculum-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--primary-blue);
        }

        .curriculum-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        @media (min-width: 768px) {
            .curricula-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .curricula-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: 1.5rem;
            }

            .curriculum-card {
                padding: 2rem;
            }

            .curriculum-emoji {
                font-size: 2.5rem;
            }

            .curriculum-card h3 {
                font-size: 1.25rem;
            }
        }

        /* Learning Options */
        .learning-options {
            padding: 4rem 1.5rem;
            background: var(--white);
        }

        .options-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .option-card {
            background: linear-gradient(135deg, rgba(65, 105, 225, 0.05), rgba(255, 105, 180, 0.05));
            border-radius: var(--border-radius);
            padding: 2.5rem;
            border: 2px solid var(--medium-gray);
            transition: all 0.3s ease;
        }

        .option-card:hover {
            border-color: var(--primary-blue);
            box-shadow: var(--shadow-lg);
        }

        .option-card h3 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .option-card ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .option-card li {
            display: flex;
            gap: 0.75rem;
            align-items: center;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .option-card li::before {
            content: "→";
            color: var(--primary-pink);
            font-weight: bold;
            font-size: 1.2rem;
        }

        @media (min-width: 768px) {
            .options-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Subjects Section */
        .subjects {
            padding: 4rem 1.5rem;
            background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
        }

        .subjects-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .subject-category {
            margin-bottom: 3rem;
        }

        .subject-category-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--light-pink);
        }

        .subject-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
        }

        .subject-badge {
            background: white;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .subject-badge:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        /* Testimonials */
        .testimonials {
            padding: 4rem 1.5rem;
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial {
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            border-left: 4px solid var(--primary-pink);
            transition: all 0.3s ease;
        }

        .testimonial:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-stars {
            color: #FFB800;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .testimonial-text {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-style: italic;
            line-height: 1.8;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary-blue);
        }

        .testimonial-role {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* FAQ Section */
        .faq {
            padding: 4rem 1.5rem;
            background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: var(--border-radius);
            margin-bottom: 1.5rem;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(65, 105, 225, 0.05), rgba(255, 105, 180, 0.05));
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, rgba(65, 105, 225, 0.1), rgba(255, 105, 180, 0.1));
        }

        .faq-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--text-secondary);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Final CTA Section */
        .final-cta {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
            padding: 4rem 1.5rem;
            text-align: center;
            color: white;
        }

        .final-cta h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .final-cta p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .final-cta .btn {
            background: white;
            color: var(--primary-blue);
            display: inline-block;
        }

        .final-cta .btn:hover {
            background: var(--light-gray);
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: white;
            padding: 3rem 1.5rem 1.5rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-size: 1.125rem;
            margin-bottom: 1rem;
            color: white;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-contact-item {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* WhatsApp Floating Button */
        .whatsapp-button {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            text-decoration: none;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
            z-index: 999;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
        }

        /* Section Spacing */
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 3rem;
                margin-bottom: 2rem;
            }

            nav {
                padding: 1rem 2rem;
            }
        }

        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* Print Styles */
        @media print {
            nav, .whatsapp-button, .cta-buttons {
                display: none;
            }
        }
