        /* Стили для кнопки */
        #mobileButton {
            display: none; /* Скрываем кнопку по умолчанию */
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background-color: #3aadc4;
            color: #ffffff !important;
            text-align: center;
            font-size: 20px;
            font-family: Arial, sans-serif;
            text-decoration: none;
            z-index: 1000; /* Обеспечение отображения кнопки поверх других элементов */
            justify-content: center;
            align-items: center;
            padding-left: 20px;
        }

        /* Отображаем кнопку только на мобильных устройствах */
        @media (max-width: 768px) {
            #mobileButton {
                display: flex;
            }
        }


