.contacts-page {
    background: #f5f7fa;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #2c3e50;
}

.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: stretch;
}

.contacts-left {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contacts-left h1 {
    font-size: 32px;
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.contact-item strong {
    color: #34495e;
    font-weight: 600;
}

.contact-item a {
    color: #1a73e8;
    text-decoration: none;
    transition: 0.2s;
}

.contact-item a:hover {
    text-decoration: underline;
}

.requisites {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e9f2;
}

.requisites h3 {
    margin-bottom: 15px;
}

.contacts-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-height: 400px;
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

@media (max-width: 992px) {
    .contacts-wrapper {
        grid-template-columns: 1fr;
    }

    .contacts-map {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .contacts-left {
        padding: 20px;
    }

    .contacts-left h1 {
        font-size: 26px;
    }

    .contact-item {
        font-size: 15px;
    }
}