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

body {
    font-family: "Poppins", sans-serif;
    padding-bottom: 80px;
}

.content-1{
    background-color: #1363DF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10% 60px;
    gap: 40px;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.logo {
    height: 40px;
    width: auto;
}

.hero-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-headline{
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.hero-subheadline{
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1.5;
}

.hero-cta-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-primary{
    background-color: #FFFFFF;
    color: #1363DF ;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    /* border: none; */
    border-radius: 10px;
    border: 2px solid #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover{
    background-color: #1363DF;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-secondary{
    background-color: transparent;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border: 2px solid #FFFFFF;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover{
    background-color: white;
    color: #1363DF;
}

.trust-strip{
    display: flex;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-item{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trust-number{
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
}

.trust-label{
    font-size: 14px;
    color: #FFFFFF;
}

.hero-image{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img{
    max-width: 100%;
    height: auto;
}

.content-2{
    height: 167px;
    background-color: #FFF0CB;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-3{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 10%;
    background-color: #FFFFFF;
}

.content-3-heading{
    font-size: 42px;
    font-weight: 700;
    color: #01202B;
    text-align: center;
    margin-bottom: 40px;
}

.howitworks{
    background-color: #ECF3FD;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    padding: 50px;
    max-width: 1100px;
    width: 100%;
    gap: 20px;
    box-sizing: border-box;
}

.howitworks-heading{
    font-size: 28px;
    font-weight: 700;
    color: #1363DF;
    text-align: center;
    margin-bottom: 20px;
}

.step-banner{
    width: 100%;
    background-color: #1363DF;
    display: flex;
    align-items: flex-start;
    padding: 25px 30px;
    border-radius: 15px;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.step-banner:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(243, 84, 39, 0.3);
}

.step-banner h1{
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    min-width: 60px;
    flex-shrink: 0;
}

.step-content{
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.step-title{
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

.step-description{
    font-size: 15px;
    color: #FFFFFF;
    padding-left: 20px;
    position: relative;
}

.step-description:before{
    content: "•";
    position: absolute;
    left: 0;
    color: #FFF0CB;
    font-size: 20px;
    line-height: 1;
}

.howitworks > div:last-child{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.howitworks button{
    background-color: #1363DF;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    border: 2px solid #1363DF;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.howitworks button:hover{
    background-color: white;
    color: #1363DF;
    transform: translateY(-2px);
    /* box-shadow: 0 4px 15px rgba(243, 84, 39, 0.3); */
}
.content-4{
    background-color: #1363DF;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.content-4-heading{
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
}

.benefits-table-wrapper{
    width: 100%;
    max-width: 900px;
    background-color: #000000;
    border-radius: 20px;
    padding: 1px;
    overflow: hidden;
}

.benefits-table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 1px;
    background-color: #000000;
    border-radius: 20px;
}

.benefits-header-row{
    background-color: #01202B;
}

.benefits-header{
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    padding: 25px 30px;
    background-color: #01202B;
    text-align: center;
}

.first-header{
    border-top-left-radius: 18px;
}

.last-header{
    border-top-right-radius: 18px;
}

.benefits-cell{
    font-size: 18px;
    color: #01202B;
    padding: 25px 30px;
    background-color: #FFFFFF;
    text-align: center;
}

.last-row .first-cell{
    border-bottom-left-radius: 18px;
}

.last-row .last-cell{
    border-bottom-right-radius: 18px;
}

.content-4-cta{
    display: flex;
    justify-content: center;
}

.content-4-button{
    background-color: #FFFFFF;
    color: #1363DF;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
}

.content-4-button:hover{
    background-color: #1363DF;
    color: white;
    transform: translateY(-2px);
    /* box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3); */
}

.table{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    margin-top: 40px;
    border-radius: 30px;
    background-color: #000000;
    gap: 1px;
}

.table table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 1px;
}

.tr{
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #F35427;
    text-align: center;
}

.tr th{
    padding: 25px 20px;
}

.table-content{
    padding: 20px !important;
    font-size: 16px;
    color: #01202B;
    background-color: #FFFFFF;
    text-align: center;
}

.table-header-cell:first-child{
    border-top-left-radius: 28px;
}

.table-header-cell:last-child{
    border-top-right-radius: 28px;
}

.table-last-cell:first-child{
    border-bottom-left-radius: 28px;
}

.table-last-cell:last-child{
    border-bottom-right-radius: 28px;
}

.faqs{
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 10%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item{
    background-color: #F8F8F8;
    border-radius: 15px;
    border: 2px solid #DEE0E1;
    padding: 20px 20px 6px 20px;
}
.faq-item-heading{
    font-size: 18px;
    font-weight: 500;
    color: #01202B;
}

.faq-item-p{
    font-size: 14px;
    line-height: 20px;
    color: #01202B;
}
.content-5{
    background-color: #ECF3FD;
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.content-5-heading{
    font-size: 38px;
    font-weight: 700;
    color: #1363DF;
    text-align: center;
}

.comparison-table{
    width: 100%;
    max-width: 1200px;
    background-color: #000000;
    border-radius: 30px;
    padding: 2px;
    gap: 1px;
}

.comparison-table table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 1px;
}

.comparison-tr{
    background-color: #1363DF;
 
}

.comparison-header{
    padding: 25px 20px;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    background-color: #1363DF;
}

.comparison-header:first-child{
    border-top-left-radius: 28px;
}

.comparison-header:last-child{
    border-top-right-radius: 28px;
}

.comparison-parameter{
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #01202B;
    background-color: #FFFFFF;
    text-align: left;
}

.comparison-content{
    padding: 20px;
    font-size: 16px;
    color: #01202B;
    background-color: #FFFFFF;
    text-align: center;
}

.comparison-last-cell:first-child{
    border-bottom-left-radius: 28px;
}

.comparison-last-cell:last-child{
    border-bottom-right-radius: 28px;
}

.comparison-cta{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.comparison-cta h3{
    font-size: 32px;
    font-weight: 700;
    color: #01202B;
}

.comparison-cta p{
    font-size: 18px;
    color: #01202B;
}

.comparison-cta button{
    background-color: #1363DF;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.comparison-cta button:hover{
    background-color: white;
    color: #1363DF;
}

/* Mobile Comparison Cards - Hidden on Desktop */
.comparison-mobile {
    display: none;
}

.pricing-section{
    background-color: #1363DF;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.pricing-heading{
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
}

.pricing-subheading{
    font-size: 20px;
    color: #FFF0CB;
    text-align: center;
    margin-top: 10px;
}

.pricing-cards{
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card{
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover{
    transform: translateY(-10px);
}

.pricing-card.featured{
    border: 3px solid #FFF0CB;
    transform: scale(1.05);
}

.pricing-card.featured:hover{
    transform: scale(1.05) translateY(-10px);
}

.best-value-badge{
    position: absolute;
    top: -15px;
    background-color: #FFF0CB;
    color: #F23D09;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
}

.plan-name{
    font-size: 28px;
    font-weight: 700;
    color: #01202B;
    margin-bottom: 20px;
}

.plan-price{
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.price{
    font-size: 42px;
    font-weight: 700;
    color: #1363DF;
}

.period{
    font-size: 18px;
    color: #666666;
}

.savings{
    background-color: #F23D09;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.plan-features{
    list-style: none;
    padding: 0;
    margin: 20px 0;
    width: 100%;
}

.plan-features li{
    font-size: 16px;
    color: #01202B;
    padding: 12px 0;
    border-bottom: 1px solid #E0E0E0;
    position: relative;
    padding-left: 25px;
}

.plan-features li:before{
    content: "✓";
    position: absolute;
    left: 0;
    color: #1363DF;
    font-weight: 700;
    font-size: 18px;
}

.plan-features li:last-child{
    border-bottom: none;
}

.plan-button{
    background-color: #1363DF;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    transition: background-color 0.3s ease;
    border: 2px solid #1363DF;
}

.plan-button:hover{
    background-color: white;
    color: #1363DF;
}

.featured-button{
    /* background-color: #01202B; */
}

.featured-button:hover{
    background-color: white;
}

.pricing-note{
    text-align: center;
}

.pricing-note p{
    font-size: 16px;
    color: #FFFFFF;
}

.testimonials-section{
    background-color: #FFFFFF;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.testimonials-heading{
    font-size: 42px;
    font-weight: 700;
    color: #01202B;
    text-align: center;
}

.metrics-strip{
    display: flex;
    flex-direction: row;
    gap: 60px;
    width: 100%;
    max-width: 900px;
    justify-content: center;
    background-color: #ECF3FD;
    padding: 40px 20px;
    border-radius: 20px;
    flex-wrap: wrap;
}

.metric-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.metric-number{
    font-size: 48px;
    font-weight: 700;
    color: #1363DF;
}

.metric-label{
    font-size: 16px;
    font-weight: 500;
    color: #01202B;
    text-align: center;
}

.testimonials-container{
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card{
    background-color: #F8F8F8;
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid #E0E0E0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #1363DF;
}

.testimonial-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.student-avatar{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #1363DF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.student-avatar.parent{
    background-color: #01202B;
}

.student-avatar span{
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
}

.student-info{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.student-name{
    font-size: 20px;
    font-weight: 600;
    color: #01202B;
}

.student-class{
    font-size: 14px;
    color: #666666;
}

.testimonial-content{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-text{
    font-size: 16px;
    color: #01202B;
    line-height: 1.6;
}

.testimonial-outcome{
    display: flex;
    justify-content: flex-start;
}

.outcome-badge{
    background-color: #F35427;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.modal-content {
    background-color: #FFFFFF;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    /* max-width: 800px; */
    max-width: 450px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #666666;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #F35427;
}

.modal-heading {
    font-size: 32px;
    font-weight: 700;
    color: #01202B;
    text-align: center;
    margin-bottom: 10px;
}

.modal-subheading {
    font-size: 16px;
    color: #666666;
    text-align: center;
    margin-bottom: 30px;
}

.class-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.class-tab {
    background-color: #F8F8F8;
    color: #01202B;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.class-tab:hover {
    background-color: #FFF0CB;
    border-color: #F35427;
}

.class-tab.active {
    background-color: #F35427;
    color: #FFFFFF;
    border-color: #F35427;
}

.class-content {
    min-height: 300px;
    position: relative;
}

.class-info {
    display: none;
    animation: fadeInContent 0.3s ease;
}

.class-info.active {
    display: block;
}

@keyframes fadeInContent {
    from {opacity: 0; transform: translateX(-20px);}
    to {opacity: 1; transform: translateX(0);}
}

.class-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #F35427;
    margin-bottom: 20px;
}

.subjects-covered, .class-benefits {
    margin-bottom: 20px;
}

.subjects-covered h4, .class-benefits h4 {
    font-size: 18px;
    font-weight: 600;
    color: #01202B;
    margin-bottom: 10px;
}

.subjects-covered ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.subjects-covered li {
    font-size: 16px;
    color: #01202B;
    padding-left: 25px;
    position: relative;
}

.subjects-covered li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F35427;
    font-weight: 700;
    font-size: 18px;
}

.class-benefits p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.modal-cta-button {
    background-color: #F35427;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.modal-cta-button:hover {
    background-color: #F23D09;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 84, 39, 0.3);
}

/* Footer Styles */
.main-footer{
    background: linear-gradient(135deg, #01202B 0%, #012838 100%);
    color: #FFFFFF;
    padding: 80px 10% 30px;
    position: relative;
}

.main-footer::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1363DF 0%, #1363DF 50%, #1363DF 100%);
}

.footer-content{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-heading{
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.footer-description{
    font-size: 15px;
    color: #FFFFFF;
    line-height: 1.7;
}

.footer-title{
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #1363DF;
    border-radius: 2px;
}

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a{
    font-size: 15px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links li a::before{
    content: '→';
    position: absolute;
    left: 0;
    color: #1363DF;
    transition: transform 0.3s ease;
}

.footer-links li a:hover{
    color: #1363DF;
    transform: translateX(5px);
}

.footer-links li a:hover::before{
    transform: translateX(5px);
}

.footer-contact{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li{
    font-size: 15px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.whatsapp-link{
    color: #25D366 !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    border: 1px solid #25D366;
}

.whatsapp-link:hover{
    background-color: #25D366;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.footer-bottom{
    border-top: 2px solid rgba(19, 99, 223, 0.3);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p{
    font-size: 14px;
    color: #FFFFFF;
}

/* Fixed Bottom Banner */
.fixed-bottom-banner{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1363DF 0%, #1363DF 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {transform: translateY(100%);}
    to {transform: translateY(0);}
}

.banner-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-text h3{
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
}

.banner-text p{
    font-size: 14px;
    color: #FFF0CB;
    margin-top: 5px;
}

.banner-enroll-button{
    background-color: #FFFFFF;
    color: #1363DF;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 35px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-enroll-button:hover{
    background-color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        padding-bottom: 100px;
    }

    /* Header */
    .main-header {
        padding: 12px 5%;
    }

    .logo {
        height: 30px;
    }

    /* Hero Section */
    .content-1 {
        padding: 20px 5% 40px;
        gap: 30px;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .hero-headline {
        font-size: 28px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .cta-primary, .cta-secondary {
        font-size: 16px;
        padding: 12px 25px;
        width: 100%;
        text-align: center;
    }

    .trust-strip {
        gap: 20px;
        justify-content: space-around;
    }

    .trust-number {
        font-size: 24px;
    }

    .trust-label {
        font-size: 12px;
    }

    .hero-image img {
        max-width: 100%;
    }

    /* Content 2 */
    .content-2 {
        height: auto;
        padding: 20px 5%;
    }

    /* How Prepzy Works */
    .content-3 {
        padding: 40px 5%;
    }

    .content-3-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .howitworks {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .howitworks-heading {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .step-banner {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .step-banner h1 {
        font-size: 36px;
        min-width: auto;
    }

    .step-content {
        align-items: center;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
        padding-left: 0;
        text-align: center;
    }

    .step-description:before {
        display: none;
    }

    .howitworks button {
        font-size: 16px;
        padding: 12px 30px;
        width: 100%;
    }

    /* Benefits Section */
    .content-4 {
        padding: 40px 5%;
        gap: 30px;
    }

    .content-4-heading {
        font-size: 28px;
    }

    .benefits-table-wrapper {
        overflow-x: auto;
    }

    .benefits-header {
        font-size: 18px;
        padding: 20px 15px;
    }

    .benefits-cell {
        font-size: 15px;
        padding: 20px 15px;
    }

    .content-4-button {
        font-size: 16px;
        padding: 12px 30px;
        width: 100%;
    }

    /* Comparison Table */
    .content-5 {
        padding: 40px 5%;
        gap: 30px;
    }

    .content-5-heading {
        font-size: 26px;
    }

    /* Hide table on mobile */
    .comparison-table {
        display: none;
    }

    /* Show mobile comparison cards */
    .comparison-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .comparison-mobile-card {
        background-color: #FFFFFF;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .comparison-mobile-title {
        font-size: 20px;
        font-weight: 700;
        color: #01202B;
        text-align: center;
        padding: 15px;
        background-color: #FFF0CB;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .comparison-mobile-title.prepzy {
        background-color: #1363DF;
        color: #FFFFFF;
    }

    .comparison-mobile-item {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 12px 0;
        border-bottom: 1px solid #E0E0E0;
    }

    .comparison-mobile-item:last-child {
        border-bottom: none;
    }

    .comparison-mobile-label {
        font-size: 14px;
        font-weight: 600;
        color: #1363DF;
    }

    .comparison-mobile-value {
        font-size: 15px;
        color: #01202B;
    }

    .comparison-cta h3 {
        font-size: 24px;
    }

    .comparison-cta p {
        font-size: 16px;
    }

    .comparison-cta button {
        font-size: 16px;
        padding: 12px 25px;
        width: 100%;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 40px 5%;
        gap: 30px;
    }

    .pricing-heading {
        font-size: 28px;
    }

    .pricing-subheading {
        font-size: 16px;
    }

    .pricing-cards {
        gap: 20px;
    }

    .pricing-card {
        max-width: 100%;
        min-width: 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .plan-name {
        font-size: 24px;
    }

    .price {
        font-size: 36px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 40px 5%;
        gap: 30px;
    }

    .testimonials-heading {
        font-size: 28px;
    }

    .metrics-strip {
        gap: 30px;
        padding: 30px 15px;
    }

    .metric-number {
        font-size: 36px;
    }

    .metric-label {
        font-size: 14px;
    }

    .testimonials-container {
        gap: 20px;
    }

    .testimonial-card {
        max-width: 100%;
        min-width: 100%;
    }

    /* FAQs */
    .faqs {
        padding: 40px 5%;
    }

    .faq-item {
        padding: 15px;
    }

    .faq-item-heading {
        font-size: 16px;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        padding: 30px 20px;
        margin: 10% auto;
    }

    .modal-heading {
        font-size: 24px;
    }

    .modal-subheading {
        font-size: 14px;
    }

    .class-tabs {
        gap: 8px;
    }

    .class-tab {
        font-size: 14px;
        padding: 10px 18px;
    }

    .class-info h3 {
        font-size: 20px;
    }

    .subjects-covered h4, .class-benefits h4 {
        font-size: 16px;
    }

    .subjects-covered ul {
        grid-template-columns: 1fr;
    }

    .subjects-covered li {
        font-size: 14px;
    }

    .class-benefits p {
        font-size: 14px;
    }

    .modal-cta-button {
        font-size: 16px;
        padding: 12px 30px;
    }

    /* Footer */
    .main-footer {
        padding: 50px 5% 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }

    .footer-heading {
        font-size: 28px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-links li a{
        font-size: 14px;
    }

    .footer-contact li{
        font-size: 14px;
    }

    .whatsapp-link{
        justify-content: center;
    }

    .footer-bottom{
        padding-top: 25px;
    }

    /* Fixed Bottom Banner */
    .banner-content {
        padding: 12px 5%;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .banner-text h3 {
        font-size: 18px;
    }

    .banner-text p {
        font-size: 12px;
    }

    .banner-enroll-button {
        font-size: 16px;
        padding: 10px 30px;
        width: 100%;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .content-1, .content-3, .content-4, .content-5, .pricing-section, .testimonials-section {
        padding: 60px 7%;
    }

    .hero-headline {
        font-size: 36px;
    }

    .content-3-heading, .content-4-heading, .pricing-heading, .testimonials-heading {
        font-size: 36px;
    }

    .howitworks {
        padding: 40px;
    }

    .step-banner {
        padding: 20px 25px;
    }

    .pricing-cards, .testimonials-container {
        gap: 25px;
    }

    .pricing-card, .testimonial-card {
        min-width: 280px;
        max-width: 320px;
    }

    .comparison-table table {
        font-size: 15px;
    }

    .main-footer {
        padding: 70px 7% 25px;
    }

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

    .banner-content {
        padding: 15px 7%;
    }
}

