html {
  scroll-behavior: smooth; /* Включает плавную прокрутку */
    scroll-padding-bottom: 200px;
  }

* {
    margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        /* Общие стили */
        .section {
            padding: 25px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 20px;
            font-size: 32px;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        /* Шапка */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            z-index: 1000;
            box-shadow: 0 1px 3px rgba(0,0,0,0.15);
        }

        .header-container {
            display: flex;
            align-items: center;
            height: 50px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            margin-right: 30px;
        }

        .logo img {
            height: 35px;
        }

        .desktop-menu {
            display: flex;
            flex-grow: 1;
            justify-content: center;
        }

        .desktop-menu a {
            color: black;
            text-decoration: none;
            padding: 0 20px;
            line-height: 70px;
            transition: color 0.3s;
        }

        .desktop-menu a:hover {
            color: #b00000;
        }

        .header-divider {
            height: 1px;
            background-color: #b00000;
            width: 100%;
        }

        .red-line {
            width: 99%; /* Занимает всю ширину страницы */
            height: 2px; /* Высота линии */
            background-color: #b00000; /* Цвет линии */
            display: block; /* Скрываем по умолчанию */
                  }


        /* Баннер */
        .banner-container {
            width: 100%;
            position: relative;
            margin-top: 70px;
            overflow: hidden;
            height: 400px; /* Фиксированная высота контейнера */
                }

            .banner-image {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Меняем cover на contain */
            object-position: center;
            display: block;
                }

        .banner-divider {
            height: 1px;
            background-color: #b00000;
            width: 100%;
        }

        /* Мобильный хедер */
        .mobile-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background: white;
            z-index: 1002;
            box-shadow: 0 1px 3px rgba(0,0,0,0.15);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Плавная анимация */
        }
        
        .mobile-header.hide {
          transform: translateY(-100%); /* Прячем шапку вверх */
          }

	.mobile-header.show {
      transform: translateY(0);
	}
        .mobile-header-container {
            display: flex;
            align-items: center;
            height: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
        }

        .mobile-header-divider {
            height: 1px;
            background-color: #b00000;
            width: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
        }

        .mobile-logo-btn {
            display: flex;
            align-items: center;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            tap-highlight-color: transparent;
        }

        .mobile-logo-btn img {
            height: 30px;
        }

        .mobile-header-links {
            display: flex;
            margin-left: auto;
        }

        .mobile-header-links a {
            color: black;
            text-decoration: none;
            margin-left: 15px;
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        /* Сетка новостей */

.news-container {
    position: relative;
    overflow: hidden;
    padding: 0 0px; /* Отступы по бокам контейнера */
}

.news-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    margin: 0 -15px; /* Компенсация padding контейнера */
    scroll-padding: 15px; /* Важно для правильного выравнивания */
}

.news-scroller::after {
    content: '';
    min-width: 15px; /* Фиксированное пространство справа */
    height: 1px; /* Минимальная высота */
}


.news-item {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 15px;
    border-radius: 5px;
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
    border: none; /* Убираем рамку */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease; /* Плавное изменение тени при наведении */
    background: #fff; /* Фон для правильного отображения тени */
}

.news-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Усиливаем тень при наведении */
    }


        .news-image {
            height: 350px;
            background-color: #eee;
            background-size: cover;
            background-position: center;
        }

        .news-content {
            padding: 20px;
        }

/*Tariffs*/

.tariffs-container {
    position: relative;
    overflow: hidden;
    padding: 0 0px; /* Отступы по бокам контейнера */
}

.tariffs-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    margin: 0 -15px; /* Компенсация padding контейнера */
    scroll-padding: 15px; /* Важно для правильного выравнивания */
}

.tariffs-scroller::after {
    content: '';
    min-width: 15px; /* Фиксированное пространство справа */
    height: 1px; /* Минимальная высота */
}


.tariffs-item {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 15px;
    border-radius: 5px;
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
    border: none; /* Убираем рамку */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease; /* Плавное изменение тени при наведении */
    background: #fff; /* Фон для правильного отображения тени */
}

.tariffs-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Усиливаем тень при наведении */
    }

.tariffs-image {
            height: 350px;
            background-color: #eee;
            background-size: cover;
            background-position: center;
        }
.tariffs-content {
            padding: 20px;
        }

/*Hardware*/

.hard-container {
    position: relative;
    overflow: hidden;
    padding: 0 0px;
}

.hard-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    margin: 0 -15px;
    scroll-padding: 15px;
}

.hard-scroller::after {
    content: '';
    min-width: 15px;
    height: 1px;
}

.hard-item {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 15px;
    border-radius: 5px;
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease; /* Добавили transform в transition */
    background: #fff;
}

.hard-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hard-content {
    padding: 20px;
}
.hard-image {
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative; /* Добавляем для внутреннего позиционирования */
    background-color: white; /* Фон на случай маленьких изображений */
        }


        .hard-image img {
            max-width: 90%; /* Ограничиваем максимальную ширину */
            max-height: 90%; /* Ограничиваем максимальную высоту */
            width: auto; /* Сохраняем пропорции */
            height: auto; /* Сохраняем пропорции */
            object-fit: contain; /* Меняем на contain вместо cover */
            object-position: center;
            display: block;
            position: absolute; /* Для центрирования */
                top: 50%;
                left: 50%;
            transform: translate(-50%, -50%); /* Точное центрирование */
                }
                
                .hard-image-small {
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative; /* Добавляем для внутреннего позиционирования */
    background-color: white; /* Фон на случай маленьких изображений */
        }
                
        .hard-image-small img {
            max-width: 70%; /* Ограничиваем максимальную ширину */
            max-height: 70%; /* Ограничиваем максимальную высоту */
            width: auto; /* Сохраняем пропорции */
            height: auto; /* Сохраняем пропорции */
            object-fit: contain; /* Меняем на contain вместо cover */
            object-position: center;
            display: block;
            position: absolute; /* Для центрирования */
                top: 50%;
                left: 50%;
            transform: translate(-50%, -50%); /* Точное центрирование */
                }

                    /* Для широких изображений */
                    .hard-image img.landscape {
                    width: 80%;
                    height: auto;
                }
                
                .hard-heading {
            font-size: 24px;
            margin-bottom: 10px;
            color: #b00000;
            text-align: center;
            margin-top: 10px;

        }
                                                                                    
        /* Для высоких изображений */
       .hard-image img.portrait {
       width: auto;
        height: 100%;
        }


       /*DOCS*/


.docs-item {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 15px;
    border-radius: 5px;
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease; /* Добавили transform в transition */
    background: #fff;
}

.docs-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.docs-content {
    padding: 20px;
    text-align: center;
}

.docs-image {
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative; /* Добавляем для внутреннего позиционирования */
    background-color: white; /* Фон на случай маленьких изображений */
}


.docs-image img {
    max-width: 100%; /* Ограничиваем максимальную ширину */
    max-height: 100%; /* Ограничиваем максимальную высоту */
    width: auto; /* Сохраняем пропорции */
    height: auto; /* Сохраняем пропорции */
    object-fit: contain; /* Меняем на contain вместо cover */
    object-position: center;
    display: block;
    position: absolute; /* Для центрирования */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Точное центрирование */
}

/*----DOCS-----*/




.news-date {
            color: #b00000;
            font-size: 14px;
            margin-bottom: 10px;
            text-align: right;

        }

        .news-heading {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .news-text {
            color: #666;
            line-height: 1.5;
            font-size: 14px;
        }

        .tarif-heading {
            font-size: 24px;
            margin-bottom: 10px;
            color: #b00000;
            text-align: center;
            margin-top: 10px;

        }

        .tarif-text {
            color: #666;
            line-height: 1.5;
            font-size: 24px;
            text-align: left;
        }



        /* Сетка для других разделов */
        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        
        .grid-item {
	border-radius: 5px;
	overflow: hidden;
	scroll-snap-align: start;
	flex-shrink: 0;
	border: none; /* Убираем рамку */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
	transition: box-shadow 0.3s ease; /* Плавное изменение тени при наведении */
	background: #fff; /* Фон для правильного отображения тени */
}
        

        .grid-item:hover {

        }

        .grid-image {
            height: 350px;
            background-color: #eee; /* Запасной фон, если изображение не загрузится */
            background-size: cover; /* Картинка заполнит весь блок, обрезая лишнее */
            background-position: center; /* Центрирует изображение */
            background-repeat: no-repeat; /* Отключает повторение фона */
                }

        .grid-content {
            padding: 20px;
        }

        .grid-date {
            color: #b00000;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .grid-heading {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .grid-text {
            color: #666;
            line-height: 1.5;
            font-size: 14px;
        }

        /* Мобильное меню */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -250px;
            width: 250px;
            height: 100vh;
            background-color: white;
            transition: left 0.3s ease;
            z-index: 1001;
            padding-top: 80px;
            box-shadow: 2px 0 5px rgba(0,0,0,0.15);
            color: #696969 !important;
            text-decoration: none !important;
            border-bottom: 1px solid rgba(105, 105, 105, 0.2); /* Серый вместо красного */

        }



        .mobile-menu a {
            display: block;
            color: #696969;
            text-decoration: none;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(176, 0, 0, 0.2);
            transition: background-color 0.3s;
        }

        .mobile-menu a:hover {
            background-color: #f8f8f8;
            color: #696969 !important; /* Фикс для Firefox */
        }

        /* Оверлей */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
        }


/* Улучшенные стили для стрелок */
        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: #b00000;
            border: none;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: all 0.2s ease;
            opacity: 0.9;
        }

        .scroll-btn:hover {
            background:  #d00000;
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }

        .scroll-btn::after {
            content: '';
            display: block;
            width: 12px;
            height: 12px;
            border-top: 2px solid white;
            border-right: 2px solid white;
        }

        .scroll-btn.left {
            left: 15px;
        }

        .scroll-btn.left::after {
            transform: rotate(-135deg);
            margin-right: 2px;
        }

        .scroll-btn.right {
            right: 15px;
        }

        .scroll-btn.right::after {
            transform: rotate(45deg);
            margin-left: 2px;
        }

        .news-container:hover .scroll-btn {
            display: flex;
        }

        /* Плавная анимация прокрутки */
        .news-scroller {
            scroll-behavior: smooth;
        }

/*TARIFFS*/


/* Улучшенные стили для стрелок */
.scroll-btn-tar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #b00000;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    opacity: 0.9;
}

.scroll-btn-tar:hover {
    background: #900000;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn-tar::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 2px solid white;
    border-right: 2px solid white;
}

.scroll-btn-tar.left {
    left: 15px;
}

.scroll-btn-tar.left::after {
    transform: rotate(-135deg);
    margin-right: 2px;
}

.scroll-btn-tar.right {
    right: 15px;
}

.scroll-btn-tar.right::after {
    transform: rotate(45deg);
    margin-left: 2px;
}

.tariffs-container:hover .scroll-btn-tar {
    display: flex;
}

/* Плавная анимация прокрутки */
.tariffs-scroller {
    scroll-behavior: smooth;
}





/*--OTHER--*/

        .red-text
        {
        color: #b00000;
        }

        a, button {
        text-decoration: none;
        outline: none; /* Убирает стандартную обводку в Chrome/Firefox */
        text-decoration: none; /* Убирает подчёркивание у ссылок */
        color: inherit; /* Наследует цвет текста родителя */
        }
        
        a:visited,
        a:active,
        a:focus,
        a:hover {
          color: inherit; /* Оставляем тот же цвет */
            text-decoration: none; /* Можно добавить подчёркивание при hover, если нужно */
            }
        
        .aRed {
            text-decoration: none;
        outline: none; /* Убирает стандартную обводку в Chrome/Firefox */
        text-decoration: none; /* Убирает подчёркивание у ссылок */
        color: #b00000;
        
        }
        
        
        /* Убирает синюю рамку в некоторых браузерах */
        a:focus, button:focus {
          outline: none !important;
          box-shadow: none !important;
        }
        
        .aNoColor
        {
        text-decoration: none;
        }

          .colored-marker-list {
              list-style-type: disc;
              padding-left: 20px;
                }
          .colored-marker-list li {
                color: #666; /* цвет текста */
                font-size: 14px;
              line-height: 1.5;
                }
          .colored-marker-list li::marker {
              color: #b00000; /* цвет маркера */
            }

.colored-marker-list-about {
    list-style-type: disc;
    padding-left: 25px;
    padding-right: 5px;
}
.colored-marker-list-about li {
    color: #666; /* цвет текста */
    font-size: 14px;
    line-height: 2.0;
}
.colored-marker-list-about li::marker {
    color: #b00000; /* цвет маркера */
}


        /*---Подвал Copyright --*/
         .sub-footer p {
           text-align: center;
           display: inline-block;
           background-color: #f4f4f4;
            width: 100%;
            margin-bottom: 0px;
            padding: 20px 0px;
            font-size: 15px;
            color: #aaaaaa;
                }

.fixed-buttons {
    position: fixed;
    height: 50px;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            display: flex;
            justify-content: space-around;
            padding: 5px;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
         z-index: 1000; /* Добавьте это */
  

                   }
        .fixed-buttons button {
            background-color: white; /* Цвет кнопки */
            color: #b00000; /* Цвет текста */
            border: none; /* Убираем рамку */
            padding: 3px 3px; /* Внутренние отступы */
            flex-grow: 1; /* Кнопки занимают равное пространство */
            text-align: center; /* Выравнивание текста */
            text-decoration: none; /* Убираем подчеркивание */
            display: inline-block; /* Отображение в строку */
            font-size: 10px; /* Размер шрифта */
            cursor: pointer; /* Указатель курсора */
            border-radius: 5px; /* Закругленные углы */
            box-sizing: border-box; /* Включаем внутренние отступы в общую ширину */

        }
        .fixed-buttons button:hover {
            background-color: white; /* Цвет кнопки при наведении */
            }

        .image-scroll-container {
            overflow-x: auto; /* Включаем горизонтальную прокрутку */
            white-space: nowrap; /* Запрещаем перенос строк */
            padding: 10px;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        .image-scroll-container img {
            height: 150px; /* Высота изображений */
            margin-right: 10px; /* Отступ между изображениями */
            border-radius: 5px; /* Закругленные углы изображений */
        }
        
  .fixed-area {
            position: fixed;
            top: 0; /* Фиксация вверху */
            left: 0;
            right: 0;
            background-color: #fff; /* Фоновый цвет */
            padding: 5px; /* Отступы */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Тень для эффекта */
            z-index: 1000; /* Убедитесь, что область выше других элементов */

        }
.button-menu{
    display: flex; /* Используем flexbox для выравнивания содержимого */
    align-items: center; /* Выравнивание по центру по вертикали */
    padding: 5px; /* Отступы кнопки */
    border: none; /* Убираем рамку */
    background-color: white; /* Цвет фона кнопки */
    color: #b00000; /* Цвет текста */
    border-radius: 5px; /* Закругленные углы */
    -webkit-tap-highlight-color: transparent; /* Убираем подсветку при нажатии на мобильных устройствах */
    outline: none; /* Убираем контур при фокусировке */
}

.button-menu img {
    width: 24px; /* Ширина изображения */
    height: auto; /* Автоматическая высота */
    margin-right: 1px; /* Отступ между изображением и текстом */
    margin-left: -10px;
    transition: transform 0.5s, opacity 0.5s;
}

.button-menu.active img {
    transform: scale(1.1);
}
.mobile-logo {
    width: 32px;
}

/*SUPPORT*/
.container-support {
    display: flex;
    align-items: center; /* Выравнивание по вертикали */
    gap: 20px; /* Расстояние между картинкой и текстом */
    flex-direction: row; /* По умолчанию - горизонтальное расположение */
    max-width: 1200px;
    margin: 0 auto;
}

.image-support {
    flex: 0 0 auto; /* Картинка не растягивается и не сжимается */
    padding-right: 20px;
}
.img-support {
    max-width: 400px;
    height: auto;
    display: block;
}

.text-support {
    flex: 1; /* Текст занимает все оставшееся пространство */
}
/*
.about-form {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
*/

.about-form {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 15px;
    border-radius: 5px;
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
    border: none; /* Убираем рамку */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease; /* Плавное изменение тени при наведении */
    background: #fff; /* Фон для правильного отображения тени */
}


.about-form-image {
    height: 350px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.about-content {
    padding: 20px;
}

.doc-title{
    color: #b00000;
    font-size: 18px;

}

/*Задать вопрос*/
#feedback-btn {
    position: fixed;
    bottom: 70px;
    right: 20px;
    padding: 10px 20px;
    background: #b00000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}
#feedback-modal {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    padding: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
#feedback-form textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
}



/* Мобильная версия */
@media (max-width: 768px) {
    html {
        touch-action: manipulation;
    }

    .header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .banner-container {
        display: none; /*на мобильных баннер не показываем*/
    }
    .mobile-menu.open {
        left: 0;
    }

    .overlay.open {
        display: block;
    }

    .news-scroller {
        display: block;
        overflow-x: visible;
        scroll-snap-type: none;
        margin: 0;
    }

    .news-item {
        flex: 0 0 100%;
        margin: 0 0 30px 0;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .tariffs-scroller {
        display: block;
        overflow-x: visible;
        scroll-snap-type: none;
        margin: 0;
    }

    .tariffs-item {
        flex: 0 0 100%;
        margin: 0 0 30px 0;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .hard-scroller {
        display: block;
        overflow-x: visible;
        scroll-snap-type: none;
        margin: 0;
    }

    .hard-item {
        flex: 0 0 100%;
        margin: 0 0 30px 0;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .grid {
        display: block;
        grid-template-columns: 1fr;
    }

    .grid-item {
        width: 100%;
        margin: 0 0 30px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    a, button {
        -webkit-tap-highlight-color: transparent;
        tap-highlight-color: transparent;
        outline: none; /* Убирает outline при фокусе (опционально) */
        user-select: none; /* Отключает выделение текста (опционально) */
    }
    .container-support {
        flex-direction: column; /* Вертикальное расположение на мобильных */
    }

    .img-support {
        max-width: 350px; /* Картинка на всю ширину экрана */
    }

    .image-support {
        padding-right: 0px;
    }

    .about-form {
        flex: 0 0 100%;
        margin: 0 0 30px 0;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

}
