* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    z-index: 1;
}

body {
    background-image: url(https://s0.rbk.ru/v6_top_pics/media/img/1/40/756739447724401.webp);
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Arial', Helvetica, sans-serif;
    color: #ffffff;
    line-height: 1.6;
}

:root {
    --index: calc(1vw + 1vh);
}

.video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    overflow: hidden;
}

#myVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    transform: translateX(-50%) translateY(-50%);
}

/* Главный заголовок */
.contacts_title {
    text-shadow: 0 3px 3px #00000075;
    font-size: calc(var(--index) * 3);
    color: rgb(214, 224, 27);
    margin-left: 10vw;
    margin-top: 10vw;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    font-family: 'Helvetica', sans-serif;
}

/* Контейнер с текстом и картой */
.container_with_contacts_info {
    width: 100%;
    height: auto;
    margin-top: 20vh;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
    padding: 5vh;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

/* Раздел с контактной информацией */
.contact_info {
    width: 40vw;
    padding: 2vh;
    color: #333333;
    font-size: calc(var(--index) * 0.9);
    line-height: 1.8;
}

.contact_info span {
    text-shadow: 0 3px 3px #00000075;
    font-weight: bold;
    color: rgb(214, 224, 27);
}

/* Стиль для карты */
.map_container {
    width: 55vw;
    height: 40vh;
    position: relative;
}

.map_container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Стили для социальных сетей */
.social_media {
    margin-top: 1vh;
    display: flex;
    gap: 15px;
}

.social_media a {
    color: rgb(214, 224, 27);
    text-decoration: none;
    transition: color 0.3s;
}

.social_media a:hover {
    color: black;
}

/* Мобильная адаптация */
@media (max-width: 1200px) {
    .contacts_title {
        font-size: calc(var(--index) * 2);
        margin-left: 5vw;
    }

    .container_with_contacts_info {
        flex-direction: column;
        padding: 4vh;
    }

    .contact_info,
    .map_container {
        width: 100%;
    }
}