.service-page {
    padding: 48px 0 80px;
}

.service-page__container {
    width: 100%;
    max-width: var(--header-container, 1320px);
    margin: 0 auto;
    padding: 0 24px;
}

.service-page__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 14px;
    color: var(--header-text-muted, #8f8f8f);
}

.service-page__breadcrumb a {
    color: var(--header-accent, #4a8c88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-page__breadcrumb a:hover {
    color: var(--header-accent-dark, #3d7572);
}

.service-page__content {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--site-body-text, #333333);
}

.service-page__content p {
    margin: 0 0 16px;
}

.service-page__content p:last-child {
    margin-bottom: 0;
}

.service-page__subs {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(74, 140, 136, 0.15);
}

.service-page__subs-title {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
}

.service-page__subs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.service-page__subs-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid rgba(74, 140, 136, 0.18);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.service-page__subs-link:hover {
    border-color: var(--header-accent, #4a8c88);
    background: #f8fcfb;
}

.service-page__subs-name {
    font-size: 15px;
    font-weight: 600;
}

.service-page__subs-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--header-text-muted, #8f8f8f);
}

.service-page__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(74, 140, 136, 0.15);
}

.service-page__back {
    font-size: 15px;
    font-weight: 600;
    color: var(--header-accent, #4a8c88);
    text-decoration: none;
}

.service-page__back:hover {
    color: var(--header-accent-dark, #3d7572);
}

.service-page__cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border: none;
    border-radius: var(--header-radius-pill, 999px);
    background: var(--header-accent, #4a8c88);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.service-page__cta:hover {
    background: var(--header-accent-dark, #3d7572);
}

.service-page__cta--phone {
    background: transparent;
    color: var(--header-accent, #4a8c88);
    border: 1px solid rgba(74, 140, 136, 0.35);
}

.service-page__cta--phone:hover {
    background: rgba(74, 140, 136, 0.08);
    color: var(--header-accent-dark, #3d7572);
}

@media (max-width: 639px) {
    .service-page {
        padding: 32px 0 56px;
    }

    .service-page__subs-list {
        grid-template-columns: 1fr;
    }

    .service-page__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
