.mmh-premium-wrapper {
    max-width: 1920px;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Section 1 Styling */
.mmh-main-heading { text-align: center; font-weight: 800; margin-bottom: 40px; }
.mmh-main-heading span { color: #86c305; }

.mmh-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.mmh-info-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mmh-info-card i { font-size: 30px; color: #86c305; margin-bottom: 15px; display: block; }
.mmh-info-card h4 { font-size: 14px; letter-spacing: 1px; margin-bottom: 10px; }
.mmh-info-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* Section 2: Split Card */
.mmh-split-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.mmh-split-image img { width: 100%; height: 100%; object-fit: cover; }
.mmh-split-content { padding: 60px; position: relative; }

.mmh-badge { 
    display: inline-block; 
    border-left: 3px solid #86c305; 
    padding-left: 10px; 
    font-weight: 700; 
    font-size: 14px;
    margin-bottom: 15px;
}

.mmh-btn-lime {
    background: #86c305;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

/* Section 3: Dark Banner */
.mmh-dark-banner {
    background: #111;
    color: #fff;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
}

.mmh-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.mmh-step-num {
    width: 40px;
    height: 40px;
    background: #86c305;
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    margin: 0 auto 15px;
    font-weight: 800;
}

.mmh-step-item h5 { color: #86c305; letter-spacing: 2px; margin-bottom: 10px; }
.mmh-step-item p { font-size: 16px; opacity: 0.8; }

/* Quiz Elements */
.mmh-radio-group label {
    display: block;
    padding: 12px;
    border: 1px solid #eee;
    margin: 8px 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
.mmh-nav-btns { margin-top: 20px; display: flex; gap: 10px; }
.mmh-mini-progress { background: #eee; height: 4px; margin-bottom: 20px; }
#mmh-bar { background: #86c305; height: 100%; width: 0%; transition: 0.3s; }

@media (max-width: 768px) {
    .mmh-info-grid, .mmh-steps-grid, .mmh-split-card { grid-template-columns: 1fr; }
}