/* Контейнер контактної сторінки */
.contact-us.contact-us-page .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

/* H1 у преміальному стилі */
.contact-us.contact-us-page h1 {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #2f4447;
    margin-bottom: 0;
    width: 100%;
}

/* Блок з H2 та контактами */
.contact-us.contact-us-page .max-contact-row {
    min-height: 40vh;
    background-color: #F4F4F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10%;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* H2 у тому ж стилі, але трохи менше */
.max-contact-row h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #2f4447;
    margin-bottom: 1.875rem;
}

/* Контактні дані */
.phone-email-contact {
    display: flex;
    gap: 2rem;
}

.info-contact a {
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
}

/* Соціальні мережі */
.social-block {
    margin-top: 1.875rem;
    display: flex;
    gap: 1rem;
}

.social-block a {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-block a:hover {
    transform: scale(1.2);
    color: #F39C12;
}

/* Місто або інша інформація */
.city-contact-page {
    margin-top: 1.875rem;
    font-size: 1.5rem;
    font-weight: 500;
}

/* Мобільна адаптація */
@media (max-width: 766px) {
    .contact-us.contact-us-page .max-contact-row {
        padding: 6rem 1rem;
        min-height: auto;
    }

    .phone-email-contact {
        flex-direction: column;
        gap: 1rem;
    }

    /* Заголовок H1 трохи нижче на мобільних */
    .contact-us.contact-us-page h1 {
        margin-top: 3rem; /* збільшуємо верхній відступ */
    }
}
