 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

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

        /* Header */
        header {
            background: #1e293b;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: aqua;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: aliceblue;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: rgb(48, 182, 182);
        }

        .nav-cta {
            background: rgba(0, 255, 255, 0.719);
            color: aliceblue;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .nav-cta:hover {
            background: rgb(24, 109, 102);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            background: #1e293b;
            color: aliceblue;
            padding: 80px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
        }

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

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .hero-image {
            position: relative;
            text-align: center;
        }

        .hero-img {
            width: 100%;
            max-width: 500px;
            height: 400px;
            background: url('https://www.euroschoolindia.com/blogs/wp-content/uploads/2023/07/novels-for-young-readers.jpg') center/cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .hero-img:hover {
            transform: translateY(-5px);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-primary {
            background: #f59e0b;
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #d97706;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 15px 25px;
            border: 2px solid white;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: white;
            color: #1e293b;
        }

        /* Features Section */
        .confidence-carousel-section {
            text-align: center;
            padding: 80px 20px;
            background: aqua;
            font-family: 'Segoe UI', sans-serif;
        }

        .confidence-carousel-section h2 {
            font-size: 2.5rem;
            margin: 0;
            color: #333;
        }

        .carousel-container {
            position: relative;
            width: 500px;
            height: 450px;
            margin: 0 auto;
            perspective: 1000px;
        }

        .carousel {
            width: 100%;
            height: 100%;
            position: absolute;
            transform-style: preserve-3d;
            animation: rotate 20s infinite linear;
        }

        .carousel-item {
            width: 220px;
            height: 220px;
            position: absolute;
            top: 110px;
            left: 140px;
            background: aliceblue;
            border-radius: 50%;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            padding: 20px;
            box-sizing: border-box;
            transform-style: preserve-3d;
            transition: transform 0.5s;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .carousel-item h3 {
            margin-top: 6px;
            font-size: 1.1rem;
            color: #222;
            margin-bottom: 0;
        }

        .carousel-item p {
            font-size: 0.9rem;
            color: #555;
            margin: 7px 0;
            text-align: center;
        }

        .carousel-item .icon {
            font-size: 2rem;
        }

        @keyframes rotate {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }

        /* Position each card in a circular layout */
        .carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(240px); }
        .carousel-item:nth-child(2) { transform: rotateY(60deg) translateZ(240px); }
        .carousel-item:nth-child(3) { transform: rotateY(120deg) translateZ(240px); }
        .carousel-item:nth-child(4) { transform: rotateY(180deg) translateZ(240px); }
        .carousel-item:nth-child(5) { transform: rotateY(240deg) translateZ(240px); }
        .carousel-item:nth-child(6) { transform: rotateY(300deg) translateZ(240px); }

        /* Course Overview */
        .course-overview {
            padding: 80px 0;
            background: white;
        }

        .overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .overview-image {
            order: 2;
        }

        .overview-img {
            width: 100%;
            height: 400px;
            background: url('https://images.unsplash.com/photo-1609220136736-443140cffec6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') center/cover;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .section-title {
            font-size: 1.8rem; 
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.8rem; 
            margin-top: 0;
        }

        .section-subtitle {
            font-size: 1rem; 
            color: #64748b;
            margin-bottom: 2rem; 
        }

        .course-timeline {
            list-style: none;
            position: relative;
            padding: 0;
            margin: 0;
        }

        .course-timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #e2e8f0;
        }

        .timeline-item {
            position: relative;
            padding-left: 60px;
            margin-bottom: 1.5rem; 
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 0;
            width: 16px;
            height: 16px;
            background: #2563eb;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 0 0 2px #2563eb;
        }

        .day-label {
            background: #2563eb;
            color: white;
            padding: 3px 10px; 
            border-radius: 20px;
            font-size: 0.75rem; 
            font-weight: 600;
            display: inline-block;
            margin-bottom: 0.4rem; 
        }

        .timeline-item h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.4rem; 
        }

        .timeline-item p {
            color: #64748b;
            line-height: 1.5; 
            font-size: 0.9rem; 
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .overview-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .overview-image {
                order: 1;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .section-subtitle {
                font-size: 0.9rem;
            }

            .timeline-item h4 {
                font-size: 0.95rem;
            }

            .timeline-item p {
                font-size: 0.85rem;
            }
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: #203244;
            color: aliceblue;
        }

        .testimonials .section-title,
        .testimonials .section-subtitle {
            color: aliceblue;
        }

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

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            position: relative;
            border: 1px solid #e2e8f0;
        }

        .testimonial-card::before {
            content: '"';
            font-size: 4rem;
            color: aqua;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #374151;
            line-height: 1.6;
            margin-top: 1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: url('https://images.unsplash.com/photo-1494790108755-2616c09e6e8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=200&q=80') center/cover;
            border-radius: 50%;
        }

        .author-info h5 {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.2rem;
            margin-top: 0;
        }

        .author-info span {
            font-size: 0.9rem;
            color: #64748b;
        }

        /* Pricing */
        .pricing {
            padding: 80px 20px;
            background: white;
        }

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

        .pricing-wrapper {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .pricing-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.06);
            border: 2px solid #2563eb;
            width: 300px;
            position: relative;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Badge styles */
        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: white;
        }

        .popular-badge.silver {
            background: silver;
        }

        .popular-badge.gold {
            background: gold;
        }

        .popular-badge.diamond {
            background: #B9F2FF;
        }

        .price-tag {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2563eb;
            margin: 0;
        }

        .price-period {
            color: #64748b;
            font-size: 0.9rem;
        }

        .features-list {
            list-style: none;
            text-align: left;
            padding-left: 0;
        }

        .features-list li {
            padding: 0.6rem 0;
            padding-left: 1.8rem;
            border-bottom: 1px solid #f1f5f9;
            position: relative;
        }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* FAQ Section - FIXED */
        .faq {
            padding: 80px 20px;
            background: #f8fafc;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            position: relative;
            font-weight: 600;
            color: #1e293b;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: #f8fafc;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: #2563eb;
            transition: transform 0.3s ease;
            font-weight: 300;
        }

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

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            color: #64748b;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 1rem 1.5rem 1.5rem;
        }

        /* Footer */
        footer {
            background: #1e293b;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #f1f5f9;
        }

        .footer-section p,
        .footer-section a {
            color: #94a3b8;
            text-decoration: none;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: aqua;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1e293b;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .hero-content,
            .overview-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .overview-image {
                order: -1;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

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

            .section-title {
                font-size: 2rem;
            }

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

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

            .container {
                padding: 0 15px;
            }

            .carousel-container {
                width: 100%;
                height: 400px;
            }

            .carousel-item {
                width: 160px;
                height: 200px;
                top: 100px;
                left: calc(50% - 80px);
                padding: 15px;
            }

            .carousel-item h3 {
                font-size: 1rem;
            }

            .carousel-item p {
                font-size: 0.8rem;
            }

            .carousel-item .icon {
                font-size: 1.5rem;
            }

            .carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(180px); }
            .carousel-item:nth-child(2) { transform: rotateY(60deg) translateZ(180px); }
            .carousel-item:nth-child(3) { transform: rotateY(120deg) translateZ(180px); }
            .carousel-item:nth-child(4) { transform: rotateY(180deg) translateZ(180px); }
            .carousel-item:nth-child(5) { transform: rotateY(240deg) translateZ(180px); }
            .carousel-item:nth-child(6) { transform: rotateY(300deg) translateZ(180px); }

            .pricing-wrapper {
                flex-direction: column;
                align-items: center;
            }

            .pricing-card {
                width: 75%;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 100px 0 60px;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

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