/* Стили для страницы Контакты */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    padding: 1.5rem;
    background: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.contact-method h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.office-section {
    margin-top: 3rem;
}

.office-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

.office {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}
