.contacts-page {
    padding: 24px 0 72px;
    position: relative;
    z-index: 1;
    background: #fff;
    color: #333;
}

.contacts-page > .doc-center-main-block {
    max-width: none;
    padding-right: 32px;
    padding-left: 32px;
}

.contacts-page .contacts-page__title {
    margin: 0 0 8px;
    color: #333;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    text-transform: none;
}

.contacts-page .contacts-page__subtitle,
.contacts-page .contacts-section__description {
    margin: 0 0 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.contacts-section {
    margin-top: 24px;
}

.contacts-page .contacts-section__title {
    margin: 0 0 12px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-transform: none;
}

.contacts-page .contacts-section__description {
    margin-bottom: 12px;
}

.contacts-section__cards {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 24px;
}

.contact-card {
    box-sizing: border-box;
    width: 330px;
    min-height: 180px;
    padding: 18px 22px;
    background: #f7f7f7;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
}

.contact-card__description {
    margin: 0;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
}

.contact-card__name {
    margin-top: 4px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.contact-card__divider {
    height: 1px;
    margin: 12px 0;
    background: #d9d9d9;
}

.contact-card__row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    overflow-wrap: anywhere;
}

a.contact-card__row:hover {
    color: #333;
}

.contact-card__row img {
    width: 16px;
    height: 16px;
    margin-top: 0;
    object-fit: contain;
}

@media (max-width: 480px) {
    .contacts-page {
        padding-top: 32px;
    }

    .contacts-page .contacts-page__title {
        font-size: 26px;
    }

    .contact-card {
        width: 100%;
    }
}
