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

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

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.breadcrumb a {
    color: var(--primary-teal);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Header */
.group-header {
    margin-bottom: 30px;
}

.group-header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.group-header p {
    color: #555;
    line-height: 1.6;
}

/* Grid */
.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Card */
.test-card {
    background: #fff;
    border-radius: 10px;
    border-top: 5px solid var(--primary-teal);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}

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

.card-content {
    padding: 20px;
}

.card-tag {
    font-size: 11px;
    color: var(--primary-teal);
    font-weight: bold;
    text-transform: uppercase;
}

.card-name {
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
}

.card-footer {
    padding: 15px 20px;
    background: #fafafa;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Button */
.btn-start {
    background: var(--primary-teal);
    color: white !important;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

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

/* SEO Bottom */
.mt-detailed-info {
    margin-top: 50px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

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

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

/* ===================================
   GROUP PAGE SEO CONTENT
=================================== */

.group-seo-content{
margin-top:30px;
padding:22px;
background:#ffffff;
border-radius:12px;
border:1px solid #eee;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.group-seo-content p{
font-size:15px;
line-height:1.7;
color:#444;
margin-bottom:12px;
}

/* ===================================
   GROUP PAGE FAQ SECTION
=================================== */

.group-faq{
margin-top:35px;
padding:22px;
background:#ffffff;
border-radius:12px;
border:1px solid #eee;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.group-faq h2{
font-size:20px;
margin-bottom:15px;
color:var(--primary-teal);
}

.faq-item{
margin-bottom:18px;
}

.faq-item h3{
font-size:16px;
margin-bottom:6px;
font-weight:600;
color:#222;
}

.faq-item p{
font-size:14px;
line-height:1.6;
color:#555;
}