body {
    position: relative;
    min-height: 100vh;
    margin: 0;
}

.main-content {
    padding-bottom: 100px;
}

.contacts-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'soyuz', sans-serif;
}

.contacts-container h1 {
    text-align: center;
    color: #007bff;
    font-size: 3em;
    margin-bottom: 30px;
}

.contacts-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-block {
    width: 300px;
    margin: 20px;
    transition: transform 0.3s ease;
}

.contact-block:hover {
    transform: translateY(-5px);
}

.contact-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-item h2 {
    color: #007bff;
    margin-bottom: 10px;
}

.contact-item p {
    color: #333;
    line-height: 1.6;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-container {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.map-container iframe {
    width: 100%;
    max-width: 1046px;
    height: 681px;
    border: none;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .contacts-container {
        margin: 10px;
        padding: 10px;
        border-radius: 20px;
        margin-bottom: 50px;
    }

    .contacts-container h1 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .contacts-content {
        flex-direction: column; /* Располагаем блоки контактов вертикально */
        align-items: center; /* Центрируем блоки контактов по горизонтали */
    }

    .contact-block {
        width: 90%; /* Занимаем почти всю ширину экрана */
        margin: 10px 0; /* Уменьшаем отступы */
    }

    .contact-item {
        padding: 15px;
        border-radius: 20px;
    }

    .contact-item h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .map-container {
        width: 100%;
        margin-top: 20px;
        text-align: center;
        height: 400px; /* Фиксированная высота */
        overflow: hidden;
    }

    .map-container iframe {
        width: 100%;
        max-width: 1046px;
        height: 100%; /* Заполняем контейнер */
        border: none;
    }
}