/* ── SECTION: WHY CHOOSE (green) ─────────────────── */
.section-why {
    padding: 80px 0;
    background: var(--green-section);
    color: var(--text-dark);
}

.section-why .section-title {
    color: var(--text-dark);
    font-size: 30px;
    text-align: center;
    margin-bottom: 24px;
}

.why-body {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 48px;
    opacity: 0.98;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.why-body strong a {
    display: inline-block;
    margin-top: 12px;
    font-weight: 700;
    color: var(--text-dark) !important;
    text-decoration: underline !important;
}

.benefits-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 0 0 calc((100% - 60px) / 6);
    min-width: 120px;
    padding: 12px 8px;
}

.benefit-item img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.benefit-item span {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}