.service-page {
    --service-dark: #27272c;
    --service-orange: #f25d21;
    --service-orange-dark: #d94f18;
    --service-warm: #f8f6f5;
    --service-line: #e6e0df;
    --service-line-strong: #d6cecc;
    --service-text-muted: rgba(20, 18, 20, 0.72);
    background: #fff;
    color: var(--service-dark);
}

.service-page,
.service-page * {
    box-sizing: border-box;
}

.service-page section,
.service-page #contact {
    scroll-margin-top: 110px;
}

.service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 1.35rem;
    border: 1px solid transparent;
    border-radius: 6px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-button:hover,
.service-button:focus-visible {
    text-decoration: none;
}

.service-button:focus-visible {
    outline: 2px solid var(--service-orange);
    outline-offset: 3px;
}

.service-button svg {
    flex: 0 0 auto;
}

.service-button--primary {
    background: var(--service-orange);
    color: #fff;
}

.service-button--primary:hover,
.service-button--primary:focus-visible {
    background: var(--service-orange-dark);
    color: #fff;
}

.service-button--secondary {
    border-color: currentColor;
    background: transparent;
    color: inherit;
}

.service-button--secondary:hover,
.service-button--secondary:focus-visible,
.service-button--light:hover,
.service-button--light:focus-visible {
    border-color: var(--service-orange);
    background: var(--service-orange);
    color: #fff;
}

.service-button--light {
    background: #fff;
    color: var(--service-dark);
}

.service-page .hr-contact {
    padding: 58px 0 100px;
    border-top: 0;
    background: var(--service-warm);
}

.service-page .hr-contact__title {
    font-size: 3.2rem;
}

.service-page .hr-contact__form {
    background: #fff;
    box-shadow: 0 18px 60px rgba(18, 20, 23, 0.06);
}

@media (max-width: 768px) {
    .service-page .hr-contact {
        padding: 48px 0 76px;
    }

    .service-page .hr-contact__title {
        font-size: 2.22rem;
    }
}

@media (max-width: 620px) {
    .service-button {
        width: 100%;
    }
}
