.contacts {
    padding: 2rem 1rem;
}

.contacts__container {
    max-width: 1200px;
    margin: 0 auto;
}

.contacts__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .contacts__top {
        grid-template-columns: 1fr;
    }
}

.contacts__info {
    background-color: #e0f2fe;
    padding: 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contacts__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contacts__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contacts__content {
    flex: 1;
}

.contacts__label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contacts__text {
    color: #374151;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contacts__link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

.contacts__link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contacts__phone {
    display: inline-block;
    background-color: #e0f2fe;
    color: #0284c7;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.contacts__phone:hover {
    background-color: #bae6fd;
    color: #0369a1;
}

.contacts__map {
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    min-height: 400px;
}

.contacts__map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

.contacts__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .contacts__bottom {
        grid-template-columns: 1fr;
    }
}

.contacts__social-requisites {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contacts__social,
.contacts__requisites {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contacts__social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.contacts__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.375rem;
    background-color: #f3f4f6;
    transition: background-color 0.2s;
    text-decoration: none;
}

.contacts__social-link:hover {
    background-color: #e5e7eb;
}

.contacts__social-link img {
    width: 24px;
    height: 24px;
}

.contacts__requisites-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.contacts__requisites-item {
    display: flex;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.95rem;
}

.contacts__requisites-label {
    font-weight: 600;
}

.contacts__requisites-value {
    color: #6b7280;
}

.contacts__directions {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contacts__yandex-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contacts__yandex-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contacts__link-icon {
    width: 20px;
    height: 20px;
}





