.contacts-info {
    background: #fff;
    padding: 80px 0;
}

.contacts-info__main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333e48;
}

.office-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.office-card__city {
    font-size: 1.5rem;
    font-weight: 400;
}

.office-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.office-detail__icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.office-detail__link {
    color: #333e48;
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-detail__link:hover {
    color: var(--primary-hover);
}

.office-detail__text {
    line-height: 1.5;
    color: #333e48;
}

.office-card__hours,
.office-card__additional {
    font-size: 0.95rem;
    line-height: 1.6;
}

.office-card__how-to {
    font-size: 0.95rem;
    line-height: 1.6;
}

.office-card__how-to ul {
    padding-left: 1.2rem;
}

.office-card__how-to li {
    margin-bottom: 8px;
}

.office-card__map {
    width: 100%;
    position: relative;
    padding-bottom: 60%;
    height: 0;
    margin-top: auto;
}

.office-card__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contacts-info__requisites {
    margin-top: 32px;
}

.requisites-content {
    line-height: 1.8;
}

@media (max-width: 767px) {
    .contacts-info {
        padding: 48px 0;
    }
}