/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

/* Typography */
h1, h2, h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
}

p, a, button, input {
    font-family: 'Inter', sans-serif;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: linear-gradient(135deg, #fff 0%, #f5f7fa 100%);
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Hamburger Menu */
.hamburger {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #3858E9;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: #2A47B5;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu a:hover {
    color: #3858E9;
    transform: translateY(-2px);
    display: inline-block;
}

.waitlist-btn {
    background: linear-gradient(135deg, #3858E9 0%, #2A47B5 100%);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 88, 233, 0.3);
}

.waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 88, 233, 0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 80px;
    background: linear-gradient(135deg, #2A47B5 0%, #3858E9 100%);
}

.hero-content {
    max-width: 1000px;
}

.badge {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: fadeIn 1s ease-out;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    animation: slideInLeft 1s ease-out;
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    display: grid;
}

.cta-btn {
    background: linear-gradient(135deg, #3858E9 0%, #2A47B5 100%);
    color: #fff;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, font-size 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 88, 233, 0.5);
}

.community-btn {
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    border: 2px solid #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, font-size 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.community-btn i {
    font-size: 1.4rem;
    transition: font-size 0.3s ease;
}

.community-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #3858E9 0%, #2A47B5 100%);
    border: none;
    box-shadow: 0 6px 20px rgba(56, 88, 233, 0.5);
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes slideInMenu {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* What We Offer Section */
.offer {
    padding: 120px 80px;
    text-align: center;
    background: #fff;
}

.offer h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #2A47B5;
    animation: fadeIn 1s ease-out;
}

.offer p {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    text-align: left;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.card dotlottie-player {
    width: 100% !important;
    height: auto !important;
    max-height: 300px;
    margin-bottom: 30px;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.card p {
    font-size: 1.2rem;
    color: #666;
    opacity: 0.9;
}

.card:nth-child(1) { animation: slideIn 1s ease forwards 0.2s; }
.card:nth-child(2) { animation: slideIn 1s ease forwards 0.4s; }
.card:nth-child(3) { animation: slideIn 1s ease forwards 0.6s; }

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Curriculum Overview Section */
.curriculum {
    padding: 120px 80px;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
}

.curriculum h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #2A47B5;
    animation: fadeIn 1s ease-out;
}

.curriculum p {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.curriculum-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.curriculum-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3858E9 0%, #2A47B5 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item.left .topic {
    margin-right: auto;
    margin-left: 0;
    text-align: left;
}

.timeline-item.right .topic {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

.week {
    background: #fff;
    border: 4px solid #3858E9;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px !important;
    font-weight: 600;
    color: #3858E9;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(56, 88, 233, 0.2);
    z-index: 1;
}

.topic {
    width: 45%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic h3 {
    font-size: 1.6rem;
    color: #2A47B5;
    margin-bottom: 15px;
}

.topic p {
    font-size: 1.2rem;
    color: #666;
}

.timeline-item:hover .topic {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing {
    padding: 120px 80px;
    text-align: center;
    background: #fff;
}

.pricing h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #2A47B5;
    animation: fadeIn 1s ease-out;
}

.pricing p {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.intermediate {
    background: linear-gradient(135deg, #3858E9 0%, #2A47B5 100%);
    color: #fff;
    transform: scale(1.05); /* Slightly larger to highlight */
}

.pricing-card.intermediate h3,
.pricing-card.intermediate .price,
.pricing-card.intermediate .description,
.pricing-card.intermediate .features li {
    color: #fff;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2A47B5;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3858E9;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.pricing-card .description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.pricing-card .features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card .features li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.pricing-card .features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #3858E9;
    font-weight: bold;
}

.pricing-card.intermediate .features li::before {
    color: #fff;
}

.pricing-btn {
    background: linear-gradient(135deg, #3858E9 0%, #2A47B5 100%);
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 88, 233, 0.5);
}

.pricing-card.intermediate .pricing-btn {
    background: #fff;
    color: #3858E9;
}

.pricing-card.intermediate .pricing-btn:hover {
    background: linear-gradient(135deg, #2A47B5 0%, #3858E9 100%);
    color: #fff;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.pricing-cta {
    margin-top: 50px;
}

.enroll-btn {
    background: linear-gradient(135deg, #3858E9 0%, #2A47B5 100%);
    color: #fff;
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 88, 233, 0.5);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 80px;
    text-align: center;
    background: linear-gradient(135deg, #3f529b 0%, #5A74F2 100%);
}

.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.quote {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.author {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 50px;
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-arrow:hover {
    background: #3858E9;
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fff;
}

/* FAQ Section */
.faq {
    padding: 120px 80px;
    text-align: center;
    background: #fff;
}

.faq h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #2A47B5;
}

.faq-item {
    background: #f9f9f9;
    margin: 25px auto;
    max-width: 1000px;
    border-radius: 20px;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item h3 {
    padding: 30px;
    font-size: 1.6rem;
    color: #3858E9;
    font-weight: 600;
    position: relative;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 30px;
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item .answer {
    padding: 0 30px 30px;
    font-size: 1.2rem;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .answer {
    max-height: 200px;
    padding: 0 30px 30px;
}

/* Join School Section */
.join-school {
    padding: 120px 80px;
    text-align: center;
    background: linear-gradient(135deg, #2A47B5 0%, #3858E9 100%);
}

.join-school-content {
    max-width: 800px;
    margin: 0 auto;
    animation: scaleIn 1s ease-out;
}

.join-school h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #fff;
}

.join-school p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.original-price {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-weight: 500;
}

.current-price {
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
}

.join-btn {
    background: #fff;
    color: #3858E9;
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.join-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #3858E9 0%, #2A47B5 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(56, 88, 233, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2A47B5 100%);
    padding: 60px 80px 30px;
    color: #fff;
}

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

.footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.newsletter-form input {
    padding: 14px;
    width: 220px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
}

.newsletter-form button {
    background: linear-gradient(135deg, #3858E9 0%, #2A47B5 100%);
    color: #fff;
    padding: 14px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: box-shadow 0.3s ease;
}

.newsletter-form button:hover {
    box-shadow: 0 6px 20px rgba(56, 88, 233, 0.5);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */

/* Tablets (768px to 1024px) */
@media (max-width: 1024px) {
    header {
        padding: 15px 40px;
        position: relative;
    }

    .hamburger {
        display: block; /* Ensure hamburger shows on tablets */
        z-index: 20;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 15;
    }

    .nav-menu.active {
        right: 0;
        animation: slideInMenu 0.3s ease forwards;
    }

    .nav-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .nav-menu a {
        font-size: 1.5rem;
        margin: 0;
    }

    .waitlist-btn {
        padding: 12px 30px;
        font-size: 1.2rem;
    }

    .hero {
        padding: 0 40px;
        height: 80vh;
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-btn, .community-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .community-btn i {
        font-size: 1.2rem;
    }

    .offer, .curriculum, .pricing, .testimonials, .faq, .join-school {
        padding: 80px 40px;
    }

    .offer h2, .curriculum h2, .pricing h2, .testimonials h2, .faq h2, .join-school h2 {
        font-size: 2.5rem;
    }

    .offer p, .curriculum p, .pricing p, .join-school p {
        font-size: 1.2rem;
    }

    .card {
        padding: 30px;
    }

    .card h3 {
        font-size: 1.4rem;
    }

    .card p {
        font-size: 1rem;
    }

    .curriculum-timeline::before {
        left: 40px;
    }

    .timeline-item {
        flex-direction: row;
        align-items: center;
        margin-bottom: 40px;
        justify-content: flex-start;
    }

    .week {
        position: relative;
        left: 0;
        transform: none;
        width: 60px;
        height: 60px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .topic {
        width: calc(100% - 100px);
        margin-left: 40px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-item.left .topic,
    .timeline-item.right .topic {
        margin-left: 40px;
        margin-right: 0;
        text-align: left;
    }

    .topic h3 {
        font-size: 1.4rem;
    }

    .topic p {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 30px;
    }

    .pricing-card h3 {
        font-size: 1.6rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    .pricing-card .description {
        font-size: 1rem;
    }

    .pricing-card .features li {
        font-size: 0.9rem;
    }

    .pricing-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .enroll-btn {
        padding: 14px 40px;
        font-size: 1rem;
    }

    .quote {
        font-size: 1.8rem;
    }

    .author {
        font-size: 1.1rem;
    }

    .faq-item h3 {
        font-size: 1.4rem;
    }

    .faq-item .answer {
        font-size: 1rem;
    }

    .original-price {
        font-size: 1.2rem;
    }

    .current-price {
        font-size: 1.4rem;
    }

    .join-btn {
        padding: 14px 40px;
        font-size: 1rem;
    }

    footer {
        padding: 40px 40px 20px;
    }

    .footer-section h3 {
        font-size: 1.4rem;
    }

    .footer-section p, .footer-section ul li a {
        font-size: 1rem;
    }

    .newsletter-form input {
        width: 100%;
    }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .hamburger {
        display: block; /* Ensure hamburger shows on mobile */
        font-size: 1.5rem; /* Slightly smaller for mobile */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 15;
    }

    .nav-menu.active {
        right: 0;
        animation: slideInMenu 0.3s ease forwards;
    }

    .nav-content {
        flex-direction: column;
        text-align: center;
        gap: 20px; /* Reduced gap for mobile */
    }

    .nav-menu a {
        font-size: 1.2rem; /* Adjusted for mobile */
        margin: 0;
    }

    .waitlist-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .hero {
        padding: 0 20px;
        height: auto;
        min-height: 60vh; /* Reduced height for mobile */
    }

    .hero-content {
        padding: 30px 0; /* Adjusted padding for mobile */
    }

    .badge {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 2rem; /* Reduced for mobile */
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn, .community-btn {
        padding: 12px 20px; /* Smaller padding for mobile */
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px; /* Slightly smaller max-width for mobile */
    }

    .community-btn i {
        font-size: 1.1rem;
    }

    .offer, .curriculum, .pricing, .testimonials, .faq, .join-school {
        padding: 60px 20px;
    }

    .offer h2, .curriculum h2, .pricing h2, .testimonials h2, .faq h2, .join-school h2 {
        font-size: 1.8rem; /* Adjusted for mobile */
    }

    .offer p, .curriculum p, .pricing p, .join-school p {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }

    .offer-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .card {
        padding: 25px;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .card p {
        font-size: 0.9rem;
    }

    .curriculum-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row;
        align-items: center;
        margin-bottom: 30px;
        justify-content: flex-start;
    }

    .week {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .topic {
        width: calc(100% - 80px);
        margin-left: 30px;
        padding: 20px;
    }

    .topic h3 {
        font-size: 1.2rem;
    }

    .topic p {
        font-size: 0.9rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card {
        padding: 25px;
    }

    .pricing-card.intermediate {
        transform: scale(1); /* No scaling on mobile */
    }

    .pricing-card h3 {
        font-size: 1.4rem;
    }

    .pricing-card .price {
        font-size: 1.8rem;
    }

    .pricing-card .description {
        font-size: 0.9rem;
    }

    .pricing-card .features li {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .pricing-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .enroll-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .quote {
        font-size: 1.3rem; /* Adjusted for mobile */
        margin-bottom: 15px;
    }

    .author {
        font-size: 0.9rem;
    }

    .carousel-arrow {
        width: 35px; /* Smaller for mobile */
        height: 35px;
        font-size: 1rem;
    }

    .carousel-dots {
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .faq-item {
        margin: 15px auto;
    }

    .faq-item h3 {
        font-size: 1.2rem;
        padding: 20px;
    }

    .faq-item h3::after {
        right: 20px;
        font-size: 1.4rem;
    }

    .faq-item .answer {
        font-size: 0.9rem;
        padding: 0 20px 20px;
    }

    .faq-item.active .answer {
        max-height: 300px;
        padding: 0 20px 20px;
    }

    .original-price {
        font-size: 0.9rem;
    }

    .current-price {
        font-size: 1.1rem;
    }

    .join-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    footer {
        padding: 30px 20px 15px;
    }

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

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p, .footer-section ul li a {
        font-size: 0.9rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        width: 100%;
        padding: 12px;
    }

    .newsletter-form button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .social-links {
        gap: 15px;
    }

    .social-icon {
        font-size: 1.2rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Very Small Screens (below 480px) */
@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }

    .hamburger {
        font-size: 1.3rem;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .waitlist-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 0 15px;
        min-height: 50vh;
    }

    .hero-content {
        padding: 20px 0;
    }

    .badge {
        font-size: 0.8rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .cta-btn, .community-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
        max-width: 200px;
    }

    .community-btn i {
        font-size: 1rem;
    }

    .offer, .curriculum, .pricing, .testimonials, .faq, .join-school {
        padding: 40px 15px;
    }

    .offer h2, .curriculum h2, .pricing h2, .testimonials h2, .faq h2, .join-school h2 {
        font-size: 1.5rem;
    }

    .offer p, .curriculum p, .pricing p, .join-school p {
        font-size: 0.8rem;
    }

    .pricing-card h3 {
        font-size: 1.2rem;
    }

    .pricing-card .price {
        font-size: 1.5rem;
    }
}