* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Важно! */
    position: relative;
}

/* Убираем стандартные отступы у основных элементов */
body, div, section, header, footer, main, article, aside, nav, figure, figcaption {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Source Sans Pro";
}
.container {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    font-family: "Source Sans Pro";
}
/*Стили для хедера + для мобильной версии*/
.main-photo {
    position: relative;
}
.btn-main {
    position: absolute;
    border: 2px solid #DDB764;
    background: #DDB764;
    padding: 20px 50px;
    cursor: pointer;
    top: 22%;
    left: 73px;
}
.color-main {

    color: black;
    font-weight: 300;
    font-size: 25px;
    letter-spacing: 1px;
    position: relative;
    padding-left: 20px;
}
.color-main::before {
    content: "→";
    position: absolute;
    margin-left: -30px;
    left: 0;
    top: 47%;
    transform: translateY(-50%);
    font-size: 40px;

}
.clear {
    text-decoration: none;
}
@media (max-width: 620px) {
    .btn-main {
        display: none;
    }
}
.header {
    background-color: #151411;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #DFB865;
    position: relative;
}
/* Мобильное меню */
.menu {
    display: none;
    flex-direction: column;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #151411;
    padding: 20px;
    border-top: 1px solid #DFB865;
    z-index: 1000;
}
.center {
    display: flex;
    margin: 0 auto;

}
.menu.active {
    display: flex;
}

.menu li {
    margin: 10px 0;
}

.menu li a {
    text-decoration: none;
    color: #DFB865;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 1px;
    display: block;
    padding: 10px 0;
    text-transform: uppercase;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #DFB865;
    transition: all 0.3s ease;
}
.cta-button {
    border: 2px solid #DFB865;
    background: #151411;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #DFB865;
}

.cta-button i {
    margin-left: 5px;
}

.color-text {
    color: #DFB865;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 1px;
}
.transform-text{
    transition: transform 0.4s ease;
}
.transform-text:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .header {padding: 15px;}
    .menu-toggle {
        display: flex;
    }
    .cta-button {
        display: none;
    }
    /* Альтернативное расположение для мобильных */
    .cta-button.mobile {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        padding: 15px;
        font-size: 16px;
    }
}
/*вверхние кнопки навигационной панели*/
@media (min-width: 769px) {
    .menu {
        display: flex !important;
        flex-direction: row;
        position: static;
        width: auto;
        background: none;
        border: none;
        padding: 0;
        gap: 50px;
    }

    .menu-toggle {
        display: none;
    }

    .cta-button {
        position: absolute;
        right: 50px;
    }
}
/*****************************/
/*Стили для главной фоторафии*/
.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/****************************/
/*Стили для раздела о форуме*/
.forum-text {
    background-color: #000000;
    margin-top: -6px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.forum-width {
    margin: 0px auto;
    max-width: 700px;
}
.forum-text-item {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.forum-text-item > h1 {
    color: #DFB865;
    font-size: 40px;

}

.text > p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    padding: 10px;
    text-align: justify;
    cursor: pointer;
    line-height: 31px;
}
.btn-forum {
    border: 2px solid #DDB764;
    background: #DDB764;
    padding: 20px 34px;
    cursor: pointer;
}
.clear-one {
    text-decoration: none;
    font-size: 18px;
    color: #000000 !important;
    font-family: "Source Sans Pro";
}
.button {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.color-yellow {
    color: #DFB865;
}
/************************/
/*Стили для 3 фотографий*/
.block-photos {
    margin-top: 50px;
    background-color: #000000;
}
.btn-one {
    position: absolute;
    border: 2px solid #DDB764;
    background: #DDB764;
    padding: 20px 34px;
    cursor: pointer;
    top: 58%;
    left: 128px;
}
.btn-two {
    position: absolute;
    border: 2px solid #DDB764;
    background: #DDB764;
    padding: 20px 34px;
    cursor: pointer;
    top: 62%;
    right: 125px;
}
.btn-three {
    position: absolute;
    border: 2px solid #DDB764;
    background: #DDB764;
    padding: 20px 34px;
    cursor: pointer;
    top: 60%;
    left: 125px;
}

.photo1 {
    position: relative;
}
@media (max-width: 620px) {
    .btn-one, .btn-two, .btn-three {
        display: none;
    }
    .btn-four {
        border: 2px solid #DDB764;
        background: #DDB764;
        padding: 20px 34px;
        cursor: pointer;
    }
}
@media (min-width: 620px) {
    .btn-four {
        display: none;
    }
}
/**************************/
/*Стили для раздела преимущества участия*/
.participation {
    max-width: 1400px;
    margin: -2px auto;
    padding: 20px;
    background-color: #000000;
}

.participation-title {
    text-align: center;
    margin-bottom: 40px;
}

.participation-title h1 {
    color: #DFB865;
    font-size: 40px;
    padding: 20px;
    letter-spacing: 2px;
}

.participation-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
}

.photo-container {
    flex: 0 0 40%;
    max-width: 500px;

}

.photo-container img {
    max-width: 500px;
    max-height: 800px;
    display: block;
}
.text-item {

}
.text-item > p {
    text-align: justify;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 300;
    padding: 10px;
    letter-spacing: 0.5px;
    cursor: pointer;
}
.text-container {
    margin-top: 100px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.button-item {
    border: 2px solid #DDB764;
    background: #DDB764;
    padding: 20px 34px;
    cursor: pointer;
    margin-left: 10px;
}
.programma {
    display: flex;
    justify-content: center;
}
.programma > h1 {
    color: #DFB865;
    font-size: 40px;
    padding: 20px;
    letter-spacing: 2px;
}










/* Адаптивность для планшетов */
@media (max-width: 768px) {
    .participation-content {
        flex-direction: column;
        gap: 30px;
    }

    .photo-container {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }

    .participation-title h1 {
        font-size: 1.5rem;
    }

    .transform-text {
        font-size: 1rem;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 480px) {
    .participation-title {
        text-align: center;
        margin-top: 35px;
    }
    .participation-title h1 {
        font-size: 1.3rem;
    }
    .photo-container {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

    .text-item, .button-item {
        padding: 12px;
    }

    .text-container {
        margin-top: 0;

    }
    .button-flex {
        display: flex;
        justify-content: center;
    }
    .programma {
        margin-top: 35px;
    }
}

/* Дополнительные улучшения для очень маленьких экранов */
@media (max-width: 320px) {
    .participation-title h1 {
        font-size: 1.1rem;
    }

    .transform-text {
        font-size: 0.9rem;
    }
}
/*Cтили для аккордиона*/
.accordion-container {
    width: 100%;
    max-width: 1360px;
    margin: -4px auto;
    background: linear-gradient(#890029, #23000A);
    overflow: hidden;
}

.accordion-icon {
    color: #DFB865;
}

.accordion {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #DFB865;
}

.border {
    border-top: 1px solid #DFB865;
}

.accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
    background: transparent;
    color: white;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-left: 11%;
}

.size-arrow {
    width: 35px;
    margin-right: 40px;
    transition: transform 0.3s ease;
}

.accordion.active .size-arrow {
    transform: rotate(180deg);
}

.accordion-title {
    flex-grow: 1;
    font-size: 40px;
    color: #DFB865;
    font-weight: 300;
    letter-spacing: 2px;
}

.accordion-content {
    padding: 0;
    max-height: 0;
    transition: max-height 0.4s ease;
    color: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.accordion.active .accordion-content {
    max-height: 100%;
}

.schedule-container {
    max-width: 100%;
}

.schedule-table {
    width: calc(100% - 200px);
    margin-left: 200px;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.schedule-table tr {
    border-bottom: 1px solid #D9D9D9;
}

.schedule-table tr:last-child {
    border-bottom: none;
}

.time {
    vertical-align: top;
    padding: 15px 20px 15px 0;
    font-size: 40px;
    width: 120px;
    color: #ffffff;
    border-right: 1px solid #D9D9D9;
}

.event {
    padding: 15px 20px;
    font-size: 35px;
    color: #ffffff;
}

.main-event-row td {
    padding-top: 25px;
    padding-bottom: 15px;
}

.main-event-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
    padding: 5px 20px;
    gap: 20px;
}

.main-event {
    color: #ffffff;
    font-weight: 500;
    font-size: 35px;
    flex: 1;
}

.time-accord {
    font-weight: normal;
    font-size: 35px;
    color: #ffffff;
    white-space: nowrap;
    margin-top: 5px;
}

.role-block {
    padding-left: 20px;
    margin-bottom: 20px;
    max-width: 820px;
}

.role {
    font-weight: 400;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #DFB865;
    letter-spacing: 0.5px;
}

.name.prominent {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 5px;
    color: #ffffff;
}

.size-text {
    font-size: 20px;
    text-transform: uppercase;
}

.speaker {
    font-size: 25px;
    line-height: 1.5;
    color: #ffffff;
}

/* Градиенты для аккордеонов */
.accordion:nth-child(1) {
    background: linear-gradient(to bottom, #890029 0%, #7a0024 14.28%);
}

.accordion:nth-child(2) {
    background: linear-gradient(to bottom, #7a0024 0%, #6b0020 28.57%);
}

.accordion:nth-child(3) {
    background: linear-gradient(to bottom, #6b0020 0%, #5c001c 60.85%, #5c001c 100%);
}

.accordion:nth-child(4) {
    background: linear-gradient(to bottom, #5c001c 0%, #4d0018 57.14%, #4d0018 100%);
}

.accordion:nth-child(5) {
    background: linear-gradient(to bottom, #4d0018 0%, #3e0014 71.42%, #3e0014 100%);
}

.accordion:nth-child(6) {
    background: linear-gradient(to bottom, #3e0014 0%, #2f000f 85.71%, #2f000f 100%);
}

.accordion:nth-child(7) {
    background: linear-gradient(to bottom, #2f000f 0%, #23000A 100%);
}

.accordion:nth-child(7) .accordion-header {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

@media (max-width: 768px) {
    .schedule-table {
        width: calc(100% - 40px);
        margin-left: 20px;
    }

    .main-event-container {
        flex-direction: column;
        gap: 10px;
    }

    .time-accord {
        align-self: flex-end;
    }

    .accordion-header {
        margin-left: 5%;
        padding: 15px 20px;
    }

    .accordion-title {
        font-size: 20px;
    }

    .time, .event, .main-event {
        font-size: 25px;
    }

    .role, .name.prominent, .speaker {
        font-size: 20px;
    }
}
/***************************************/
/*Стили для раздела зарегестрироваться*/
.container-form {
    max-width: 1400px;
    background-color: #000000;
}
.fon-form {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.form-block {
    margin-top: 50px;
    border: 2px solid #DFB865;
    color: #DFB865;
    width: 100%;
    max-width: 700px;
    height: auto;
    min-height: 300px;
    background-color: #151411;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.form-block-h3 {
    display: flex;
    justify-content: center;
    font-weight: 300;
    margin-top: 0;
    font-size: 25px;
    letter-spacing: 1.5px;
    font-family: "Source Sans Pro";
    text-align: center;
    width: 100%;
}

.form-block-p {
    display: flex;
    justify-content: center;
    font-weight: 600;
    margin-top: 20px;
    font-size: 25px;
    letter-spacing: 1.5px;
    font-family: "Source Sans Pro";
    text-align: center;
    width: 100%;
}

.btn-five {
    display: flex;
    margin: 40px auto 0 auto;
    border: 2px solid #DDB764;
    background: #DDB764;
    padding: 20px 35px;
    cursor: pointer;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

.clear-one {
    text-decoration: none;
    color: inherit;
    font-family: "Source Sans Pro";
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .form-block {
        max-width: 600px;
        padding: 30px 20px;
        min-height: 280px;
    }

    .form-block-h3 {
        font-size: 22px;
        margin-top: 10px;
    }

    .form-block-p {
        font-size: 22px;
        margin-top: 15px;
    }

    .btn-five {
        margin: 30px auto 0 auto;
        padding: 18px 30px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .fon-form {
        padding: 30px 15px;
        min-height: 350px;
    }

    .form-block {
        max-width: 100%;
        padding: 25px 15px;
        min-height: 250px;
        border-width: 1.5px;
    }

    .form-block-h3 {
        font-size: 18px;
        letter-spacing: 1px;
        margin-top: 5px;
        line-height: 1.3;
    }

    .form-block-p {
        font-size: 18px;
        letter-spacing: 1px;
        margin-top: 15px;
        line-height: 1.3;
    }

    .btn-five {
        margin: 25px auto 0 auto;
        padding: 15px 25px;
        border-width: 1.5px;
    }

    .clear-one {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
}

/* Адаптивность для маленьких мобильных устройств */
@media (max-width: 480px) {
    .fon-form {
        padding: 20px 10px;
        min-height: 300px;
    }

    .form-block {
        padding: 20px 10px;
        min-height: 220px;
    }

    .form-block-h3 {
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .form-block-p {
        font-size: 16px;
        letter-spacing: 0.5px;
        margin-top: 10px;
    }

    .btn-five {
        margin: 20px auto 0 auto;
        padding: 12px 20px;
    }

    .clear-one {
        font-size: 14px;
    }
}

/* Адаптивность для очень маленьких экранов */
@media (max-width: 360px) {
    .form-block-h3 {
        font-size: 14px;
    }

    .form-block-p {
        font-size: 14px;
    }

    .btn-five {
        padding: 10px 15px;
    }

    .clear-one {
        font-size: 12px;
    }
}

/* Поддержка landscape режима */
@media (max-height: 500px) and (orientation: landscape) {
    .fon-form {
        min-height: 300px;
        padding: 20px 15px;
    }

    .form-block {
        min-height: 200px;
        padding: 20px 15px;
    }

    .form-block-h3 {
        margin-top: 0;
        font-size: 18px;
    }

    .form-block-p {
        margin-top: 10px;
        font-size: 18px;
    }

    .btn-five {
        margin: 15px auto 0 auto;
        padding: 12px 20px;
    }
}

/* Улучшение для touch устройств */
@media (hover: none) and (pointer: coarse) {
    .btn-five {
        min-height: 44px; /* Минимальный размер для удобного нажатия */
    }

    .clear-one {
        padding: 5px 0; /* Увеличиваем область нажатия */
    }
}

/* Поддержка высоких экранов */
@media (min-width: 1920px) {
    .form-block {
        max-width: 800px;
        min-height: 350px;
    }

    .form-block-h3 {
        font-size: 28px;
    }

    .form-block-p {
        font-size: 28px;
    }

    .btn-five {
        padding: 25px 40px;
    }

    .clear-one {
        font-size: 18px;
    }
}
/*Стили для партнеров*/
.fon-partners {
    position: relative;
    max-width: 1400px;
    margin: -2px auto;
    padding: 40px 20px;
    background-color: #000000;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-partners {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.form-partners-h3 {
    color: #DFB865;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
    font-family: "Source Sans Pro";
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.blocks-partners {
    width: 100%;
    max-width: 1360px; /* 1400px - отступы */
    overflow: hidden;
}

.logos-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
    width: 100%;
    padding: 10px 0;
}

.logo-item {
    background-color: #42371E;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0; /* Важно для сжатия */
    flex: 0 1 auto; /* Не растягивается, но сжимается */
    height: 100px;
    transition: all 0.3s ease;
}

.logo-item:hover {
    background-color: #52482E;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.logos-horizontal img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.95);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Индивидуальные настройки ширины для логотипов */
.logo-item:nth-child(1) img { max-width: 120px; } /* РВИО */
.logo-item:nth-child(2) img { max-width: 120px; } /* МПРФ */
.logo-item:nth-child(3) img { max-width: 60px; }  /* НПР */
.logo-item:nth-child(4) img { max-width: 150px; } /* ИР */
.logo-item:nth-child(5) img { max-width: 185px; } /* ДПИПГМ */
.logo-item:nth-child(6) img { max-width: 120px; } /* Единая Россия */
.logo-item:nth-child(7) img { max-width: 100px; } /* gameart */
.logo-item:nth-child(8) img { max-width: 140px; } /* tanks */
.logo-item:nth-child(9) img { max-width: 140px; } /* КОСМПгМ */

/* Адаптивность - когда не помещаются в одну строку */
@media (max-width: 1400px) {
    .logos-horizontal {
        gap: 12px;
    }

    .logo-item {
        padding: 18px 12px;
        height: 95px;
    }

    .logo-item:nth-child(1) img { max-width: 110px; }
    .logo-item:nth-child(2) img { max-width: 110px; }
    .logo-item:nth-child(4) img { max-width: 140px; }
    .logo-item:nth-child(5) img { max-width: 170px; }
    .logo-item:nth-child(8) img { max-width: 130px; }
    .logo-item:nth-child(9) img { max-width: 130px; }
}

@media (max-width: 1200px) {
    .logos-horizontal {
        gap: 10px;
    }

    .logo-item {
        padding: 15px 10px;
        height: 90px;
    }

    .logo-item:nth-child(1) img { max-width: 100px; }
    .logo-item:nth-child(2) img { max-width: 100px; }
    .logo-item:nth-child(4) img { max-width: 130px; }
    .logo-item:nth-child(5) img { max-width: 160px; }
    .logo-item:nth-child(8) img { max-width: 120px; }
    .logo-item:nth-child(9) img { max-width: 120px; }
}

@media (max-width: 1024px) {
    /* Начинаем переносить на две строки */
    .logos-horizontal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .logo-item {
        flex: 0 0 calc(11.11% - 8px); /* 9 элементов в строке */
        height: 85px;
        padding: 12px 8px;
    }

    .logos-horizontal img {
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .form-partners-h3 {
        font-size: 36px;
    }

    .logo-item {
        flex: 0 0 calc(33.33% - 8px); /* 3 в строке */
        height: 80px;
        margin-bottom: 8px;
    }

    .logos-horizontal img {
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .fon-partners {
        padding: 30px 10px;
    }

    .form-partners-h3 {
        font-size: 28px;
    }

    .logo-item {
        flex: 0 0 calc(50% - 6px); /* 2 в строке */
        height: 75px;
        padding: 10px 5px;
    }

    .logos-horizontal img {
        max-height: 40px;
    }
}

@media (max-width: 320px) {
    .logo-item {
        flex: 0 0 100%; /* 1 в строке */
        height: 70px;
    }
}
/*Стили для футера*/
.fon-footer {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #000000;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-contact {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.title-contact-h3 {
    margin-bottom: 20px;
    color: #DFB865;
    font-size: clamp(2rem, 5vw, 60px);
    font-weight: 400;
    letter-spacing: 3px;
    font-family: "Source Sans Pro";
}

.address-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.float {
    margin-bottom: 30px;
    margin-right: -40px;
    width: 24px;
    height: 24px;
}

.color-text-footer {
    font-size: clamp(1rem, 2.5vw, 22px);
    font-weight: 300;
    color: #ffffff;
    font-family: "Source Sans Pro";
    margin: 0;
}

.color-text-footer2 {
    font-weight: 400;
    font-family: "Source Sans Pro";
    color: #DFB865;
    font-size: clamp(1rem, 2.5vw, 22px);
    margin: 0;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

#map {
    width: 100%;
    height: 300px;
    border-radius: 15px;
}

.dark-map {
    filter: grayscale(1) invert(100%);
}

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

.color-text-foote3 {
    font-size: clamp(1rem, 2.5vw, 22px);
    font-weight: 400;
    color: #ffffff;
    font-family: "Source Sans Pro";
    margin: 0 0 10px 0;
}

.color-text-footer4 {
    font-size: clamp(1.1rem, 2.8vw, 24px);
    font-weight: 400;
    color: #DFB865;
    font-family: "Source Sans Pro";
    margin: 0;
    display: block;
}

.name {
    font-weight: 300;
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .fon-footer {
        padding: 30px 15px;
        min-height: 500px;
    }

    .map-container {
        max-width: 900px;
    }

    #map {
        height: 250px;
    }

    .address-block {
        gap: 12px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .fon-footer {
        padding: 25px 10px;
        min-height: 450px;
    }

    .title-contact-h3 {
        margin-bottom: 15px;
        letter-spacing: 2px;
    }

    .map-container {
        margin: 15px 0;
        border-radius: 10px;
    }

    #map {
        height: 200px;
        border-radius: 10px;
    }

    .address-block {
        flex-direction: column;
        gap: 8px;
    }

    .float {
        display: none;
    }

    .footer-contact {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .fon-footer {
        padding: 20px 8px;
        min-height: 400px;
    }

    .title-contact-h3 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    #map {
        height: 180px;
    }

    .color-text-footer,
    .color-text-footer2,
    .color-text-foote3 {
        font-size: 1rem;
    }

    .color-text-footer4 {
        font-size: 1.1rem;
    }

    .address-block {
        gap: 5px;
    }
}

@media (max-width: 320px) {
    .fon-footer {
        padding: 15px 5px;
        min-height: 350px;
    }

    .title-contact-h3 {
        font-size: 1.5rem;
    }

    #map {
        height: 150px;
    }

    .color-text-footer4 {
        font-size: 1rem;
    }
}

/* Дополнительные стили для улучшения внешнего вида */
.address-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}






/*Внутренний отступ для того чтоб на мобильных ширина была фулл*/
@media (max-width: 620px) {
    .container {
        padding: 0;
    }
}
/****************************/