/* ===== КАТАЛОГ УСЛУГ НА ПОСАДОЧНОЙ ===== */
.service-category {
    background: white;
    border-radius: 24px;
    padding: 28px 32px;
    margin-bottom: 28px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.03);
    border: 1px solid #eef2f8;
}
.service-category h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f2b3d;
}
.service-category p {
    color: #334155;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}
.service-price-list {
    border-top: 1px solid #eef2f8;
    padding-top: 16px;
    margin-bottom: 20px;
}
.service-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
    gap: 12px;
}
.service-row:last-child {
    border-bottom: none;
}
.service-row span {
    color: #334155;
}
.service-row strong {
    font-size: 1.1rem;
    color: #1f5e3a;
    white-space: nowrap;
}
/* кнопка .btn уже определена в brand.css, но на всякий случай оставим переопределение */
.service-category .btn {
    display: inline-block;
    padding: 10px 24px;
    background: #1e4a6e;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    margin-top: 8px;
}
.service-category .btn:hover {
    background: #0f3a56;
}

/* Адаптация */
@media (max-width: 768px) {
    .service-category {
        padding: 20px 16px;
    }
    .service-row {
        flex-wrap: wrap;
        gap: 6px;
    }
    .service-row strong {
        margin-left: 0;
    }
}