body {
    padding-top: 7vh;
}
.section-title {
    width: 100%;
    text-align: center;
    margin: 0 auto 40px;

    font-size: 2.5em;
    color: #333;
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.map-container {
    overflow: hidden;
}

.yandex-map {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-block {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.info-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-title {
    color: #2c3e50;
    font-size: 1.3em;
    margin-bottom: 12px;
}

.info-text {
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 992px) {
    .contacts-wrapper {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }

    .contact-info {
        order: -1;
        margin-bottom: 30px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}
@media (max-width: 480px) {
    .section-title {
        font-size: 1.6em;
    }

    .contact-info {
        padding: 20px;
    }

    .info-title {
        font-size: 1.1em;
    }

    .info-text {
        font-size: 0.95em;
    }
}
