:root{
    --primary-teal:#008080;
}

/* =========================
   CONTAINER
========================= */

.mt-container{
    max-width:1200px;
    margin:20px auto;
    padding:0 15px;
    font-family:"Poppins",sans-serif;
}

/* =========================
   SEO INTRO
========================= */

.seo-intro{
    background:#fff;
    padding:25px;
    border-left:5px solid var(--primary-teal);
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
    margin-bottom:30px;
}

.seo-intro h1{
    font-size:1.9rem;
    margin-bottom:12px;
    line-height:1.4;
}

.seo-intro p{
    color:#555;
    line-height:1.8;
}

/* =========================
   TOP BANNER
========================= */

.home-header-banner{
    background:var(--primary-teal);
    color:#fff;
    padding:25px;
    border-radius:12px;
    margin-bottom:35px;
}

.home-header-banner h2{
    margin-bottom:8px;
}

/* =========================
   SECTION TITLE
========================= */

.section-heading{
    font-size:1.6rem;
    color:var(--primary-teal);
    margin-bottom:25px;
}

.group-section{
    margin-bottom:40px;
}

/* =========================
   GROUP GRID
========================= */

.group-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:25px;
}

/* =========================
   GROUP CARD
========================= */

.group-card{
    background:#fff;
    border-radius:14px;
    border-top:5px solid var(--primary-teal);
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    transition:.3s;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.group-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.group-content{
    padding:25px;
    text-align:center;
}

.group-content h3{
    color:var(--primary-teal);
    font-size:1.4rem;
    margin-bottom:10px;
}

.group-content p{
    color:#666;
}

.group-footer{
    border-top:1px solid #eee;
    padding:18px;
    text-align:center;
    background:#fafafa;
}

.btn-start{
    background:var(--primary-teal);
    color:#fff !important;
    text-decoration:none;
    padding:10px 22px;
    border-radius:8px;
    display:inline-block;
    font-weight:600;
}

.btn-start:hover{
    background:#006666;
}

/* =========================
   SIMPLE CONTENT SECTIONS
========================= */

.mock-category-info,
.why-choose,
.important-links,
.info-block{
    margin-top:45px;
}

.mock-category-info h2,
.why-choose h2,
.important-links h2,
.info-block h2,
.mock-home-seo h2,
.mock-home-faq h2{
    color:var(--primary-teal);
    font-size:1.5rem;
    margin-bottom:15px;
    padding-bottom:10px;
    border-bottom:2px solid #ececec;
}

.mock-category-info p,
.info-block p,
.mock-home-seo p,
.mock-home-faq p{
    color:#555;
    line-height:1.9;
    font-size:15px;
}

/* =========================
   WHY CHOOSE
========================= */

.why-choose ul{
    padding-left:22px;
}

.why-choose li{
    margin-bottom:12px;
    color:#444;
    line-height:1.8;
}

/* =========================
   IMPORTANT LINKS
========================= */

.important-links ul{
    padding-left:22px;
}

.important-links li{
    margin-bottom:12px;
}

.important-links a{
    color:var(--primary-teal);
    font-weight:600;
    text-decoration:none;
}

.important-links a:hover{
    text-decoration:underline;
}

/* =========================
   BENEFITS
========================= */

.test-benefits{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:45px;
}

.benefit-item{
    background:#fff;
    border-radius:12px;
    border-top:5px solid var(--primary-teal);
    box-shadow:0 4px 15px rgba(0,0,0,.05);
    padding:25px;
}

.benefit-item h3{
    color:var(--primary-teal);
    margin-bottom:10px;
}

.benefit-item p{
    color:#555;
    line-height:1.7;
}

/* =========================
   DETAILED INFO
========================= */

.mt-detailed-info{
    margin-top:50px;
}

.info-block{
    margin-bottom:40px;
}

.steps-list{
    padding-left:22px;
}

.steps-list li{
    margin-bottom:12px;
    line-height:1.8;
    color:#555;
}

/* =========================
   SEO CONTENT (NO CARD)
========================= */

.mock-home-seo,
.mock-home-faq{
    max-width:1200px;
    width:calc(100% - 30px);
    margin:50px auto 0;
    padding:0;
    background:none;
    border:none;
    box-shadow:none;
}

/* =========================
   FAQ
========================= */

.faq-item{
    border-bottom:1px solid #eee;
    padding:18px 0;
}

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

.faq-item h3{
    font-size:17px;
    margin-bottom:10px;
    color:#222;
}

.faq-item p{
    color:#555;
    line-height:1.8;
}

/* =========================
   AD
========================= */

.mocktest-ad{
    margin:30px 0;
    text-align:center;
}

.ad-label{
    display:block;
    font-size:12px;
    color:#777;
    margin-bottom:5px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .seo-intro{
        padding:20px;
    }

    .home-header-banner{
        padding:20px;
    }

    .seo-intro h1{
        font-size:1.5rem;
    }

    .home-header-banner h2{
        font-size:1.4rem;
    }

    .section-heading,
    .mock-category-info h2,
    .why-choose h2,
    .important-links h2,
    .info-block h2,
    .mock-home-seo h2,
    .mock-home-faq h2{
        font-size:1.3rem;
    }

    .group-grid,
    .test-benefits{
        grid-template-columns:1fr;
    }

    .group-content,
    .benefit-item{
        padding:20px;
    }
}