/* Убираем все отступы и поля */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Устанавливаем размеры и убираем прокрутку */
body, html {
    width: 100%;
    height: 100%;
}

/* Фоновое изображение */
.full-screen-image {
    width: 100vw; /* Ширина на весь экран */
    height: 100vh; /* Высота на весь экран */
    background-image: url('1photo.jpg'); /* Путь к изображению */
    background-size: cover; /* Масштабирование изображения */
    background-position: center; /* Центрирование изображения */
    background-repeat: no-repeat; /* Избежание повторения изображения */
    display: flex; /* Используем flexbox для центрирования */
    flex-direction: column; /* Вертикальное выравнивание элементов */
    align-items: center; /* Центрирование по горизонтали */
    justify-content: center; /* Центрирование по вертикали */
    color: white; /* Цвет текста */
    position: relative; /* Относительное позиционирование для контейнера */
}

.full-screen-image1 {
    width: 100vw; /* Ширина на весь экран */
    height: 100vh; /* Высота на весь экран */
    position: relative;
    background-image: url('2photo.jpg'); /* Путь к изображению */
    background-size: cover; /* Масштабирование изображения */
    background-position: center; /* Центрирование изображения */
    background-repeat: no-repeat; /* Избежание повторения изображения */
    display: flex; /* Используем flexbox для центрирования */
    align-items: center; /* Выравнивание по вертикали в центре */
    justify-content: center; /* Центрирование по горизонтали */
    color: white; /* Цвет текста */
    position: relative; /* Относительное позиционирование для контейнера */
}
.full-screen-image2 {
    width: 100vw; /* Ширина на весь экран */
    height: 100vh; /* Высота на весь экран */
    background-image: url('2photo.jpg'); /* Путь к изображению */
    background-size: cover; /* Масштабирование изображения */
    background-position: center; /* Центрирование изображения */
    background-repeat: no-repeat; /* Избежание повторения изображения */
    background-attachment: fixed; /* Фиксированное фоновое изображение */
    display: flex; /* Используем flexbox для центрирования */
    align-items: center; /* Выравнивание по вертикали в центре */
    justify-content: center; /* Центрирование по горизонтали */
    color: white; /* Цвет текста */
}

.full-screen-image3 {
    width: 100vw; /* Ширина на весь экран */
    height: 100vh; /* Высота на весь экран */
    background-image: url('3photo.jpg'); /* Путь к изображению */
    background-size: cover; /* Масштабирование изображения */
    background-position: center; /* Центрирование изображения */
    background-repeat: no-repeat; /* Избежание повторения изображения */
    display: flex; /* Используем flexbox для центрирования */
    align-items: center; /* Выравнивание по вертикали в центре */
    justify-content: center; /* Центрирование по горизонтали */
    color: white; /* Цвет текста */
}

.full-screen-image4 {
    width: 100vw;
    min-height:: 100vh;
    background-image: url('1photo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* важно: чтобы контент мог “уйти вниз”, а не центрировался */

    color: white;
    position: relative;

    overflow-y: visible; /* 🔥 разрешаем выход за нижнюю границу */
}
.full-screen-image5 {
    width: 100vw; /* Ширина на весь экран */
    height: 100vh; /* Высота на весь экран */
    background-image: url('4photo.jpg'); /* Путь к изображению */
    background-size: cover; /* Масштабирование изображения */
    background-position: center; /* Центрирование изображения */
    background-repeat: no-repeat; /* Избежание повторения изображения */
    background-attachment: fixed; /* Фиксированное фоновое изображение */
    display: flex; /* Используем flexbox для центрирования */
    align-items: center; /* Выравнивание по вертикали в центре */
    justify-content: center; /* Центрирование по горизонтали */
    color: white; /* Цвет текста */
}
/* Меню */
.menu {
    position: absolute; /* Абсолютное позиционирование для меню */
    top: 60px; /* Отступ сверху от верхнего края */
    right: 10px; /* Отступ справа от правого края */
    display: flex; /* Используем flexbox для горизонтального расположения */
    gap: 20px; /* Пробел между элементами меню */
}

/* Стили для ссылок в меню */
.menu a {
    color: white; /* Цвет текста */
    text-decoration: underline; /* Подчеркивание текста по умолчанию */
    font-size: 1.2em; /* Размер шрифта */
    font-family: Arial, sans-serif; /* Шрифт */
    background-color: transparent; /* Прозрачный фон по умолчанию */
    padding: 5px 10px; /* Отступы для визуального разделения элементов */
    border-radius: 5px; /* Закругленные углы для кнопок */
    transition: background-color 0.3s; /* Плавный переход фона */
}

.menu a:hover {
    color: white; /* Цвет текста при наведении */
    background-color: #6cf7f9; /* Цвет фона при наведении */
    text-decoration: none; /* Убираем подчеркивание при наведении */
}

/* Контейнер для текста */
.text-container {
    position: absolute; /* Абсолютное позиционирование для меню */
    top: 10px;
    text-align: center; /* Выравнивание текста по центру */

    color: white; /* Цвет текста */
    font-family: Arial, sans-serif; /* Шрифт */
}

/* Основной текст */
.main-text {
    font-size: 3em; /* Размер основного текста */
    font-weight: bold; /* Жирный шрифт */
}

/* Подзаголовок */
.sub-text {
    font-size: 1.5em; /* Размер подзаголовка */
}

/* Контейнер для описания услуг */
.services-container {
    width: 100vw; /* Ширина на весь экран */
    padding: 40px 20px; /* Отступы для контейнера описания */
    background-color: rgba(0, 0, 0, 0.9); /* Полупрозрачный фон для контраста */
    color: white;
    text-align: left;
}

/* Заголовок и описание услуг */
.services-container h2 {
    font-size: 2.5em; /* Размер заголовка */
    margin-bottom: 20px; /* Отступ снизу для заголовка */
}

.services-container p {
    font-size: 1.2em; /* Размер основного текста */
    line-height: 1.6; /* Интервал между строками */
    margin-bottom: 20px; /* Отступ снизу для абзацев */
}

.services-container ul {
    list-style: none; /* Убираем маркеры у списка */
    padding: 0; /* Убираем отступы */
}

.services-container li {
    margin-bottom: 10px; /* Отступ снизу для элементов списка */
}
------
.services-container1 {
    width: 100vw; /* Ширина на весь экран */
    padding: 40px 20px; /* Отступы для контейнера описания */
    background-color: rgba(0, 0, 0, 0.9); /* Полупрозрачный фон для контраста */
    color: white;
    text-align: center;
}

/* Заголовок и описание услуг */
.services-container1 h2 {
    font-size: 2.5em; /* Размер заголовка */
    margin-bottom: 20px; /* Отступ снизу для заголовка */
}

.services-container1 p {
    font-size: 1.2em; /* Размер основного текста */
    line-height: 1.6; /* Интервал между строками */
    margin-bottom: 20px; /* Отступ снизу для абзацев */
}

.services-container1 ul {
    list-style: none; /* Убираем маркеры у списка */
    padding: 0; /* Убираем отступы */
}

.services-container1 li {
    margin-bottom: 10px; /* Отступ снизу для элементов списка */
}

.form-container {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background-color: #6cf7f9;

  }
.form-container input[type='text'],
  .form-container input[type='number'],
  .form-container input[type='email'],
.form-container input[type='datum'],
  .form-container select,
  .form-container textarea {
    flex: 1;
    width: calc(30% - 10px);
    /* Уменьшаем ширину элементов и убираем отступы */
    padding: 15px;
    margin-right: 20px;
    /* Добавляем отступ между элементами */
    margin-bottom: 20px;
    /* Добавляем отступ снизу для элементов */
    border: none;
    border-radius: 8px;
    box-sizing: border-box;
    background-color:#E6FCFD;
    color: #333;
    transition: background-color 0.3s, box-shadow 0.3s;
  }

  /* Убираем отступы и увеличиваем ширину элементов формы */
  .form-container input[type='text'],
  .form-container input[type='number'],
  .form-container input[type='email'],
.form-container input[type='datum'],
  .form-container select,
  .form-container textarea {
    flex: 1;
    width: calc(25% - 25px);
    /* Уменьшаем ширину элементов и убираем отступы */
    padding: 15px;
    margin-right: 20px;
    /* Добавляем отступ между элементами */
    margin-bottom: 20px;
    /* Добавляем отступ снизу для элементов */
    border: none;
    border-radius: 8px;
    box-sizing: border-box;
    background-color:#E6FCFD;
    color: #333;
    transition: background-color 0.3s, box-shadow 0.3s;
  }

  /* Обертка для верхнего ряда */


  /* Обертка для кнопки */
  .submit-button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    /* Выравниваем содержимое вправо */
    margin-top: 10px;
    /* Добавляем отступ сверху для кнопки */
    margin-left: -27px;
  }

  button[type='submit'] {
    background-color: #2f4223;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
  }

  button[type='submit']:hover {
    background-color: #1d2c16;
  }

---------------------------------------------------

.content2 {
  background-color: rgba(108, 247, 249, 0.5);
  padding: 20px;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
}

/* Колонки на десктопе */
.left-column2,
.right-column2 {
  width: calc(50% - 20px);
  margin-bottom: 20px;
  box-sizing: border-box;
}

.left-column2 {
  float: left;
}

.right-column2 {
  float: right;
}


input[type='text'],
input[type='number'],
input[type='datum'],
select,
textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  background-color:#E6FCFD;
  color: #333;
  transition: background-color 0.3s, box-shadow 0.3s;
}

input[type='text']:focus,
input[type='number']:focus,
input[type='datum']
select:focus,
textarea:focus {
  background-color: #fff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {

    /* Фоновый контейнер */
    .full-screen-image2 {
        height: auto !important;         /* растягиваем под контент */
        min-height: auto !important;     
        flex-direction: column !important; 
        justify-content: flex-start !important; 
        align-items: stretch !important;
        padding: 20px !important;
    }

    /* Контент внутри фонового блока */
    .content2 {
        width: 100% !important;
        padding: 20px !important;
        margin-top: 40px !important;      /* отступ сверху */
        margin-bottom: 20px !important;   /* отступ до следующего блока */
        position: relative !important;
        float: none !important;
        box-sizing: border-box;
    }

    /* Левый и правый блоки внутри content2 */
    .left-column2,
    .right-column2 {
        width: 100% !important;
        float: none !important;
        margin-bottom: 20px !important;
    }

    /* Следующий блок (форма) */
    .form-container10 {
        width: 100% !important;
        flex-direction: column !important; 
        position: relative !important;
              /* гарантированный отступ сверху */
        box-sizing: border-box;
    }
}


@media (max-width: 768px) {
    .form-container5 {
        display: flex;
        flex-direction: column; /* все элементы по вертикали */
        gap: 15px; /* расстояние между блоками */
    }

    .form-container5 .form-group {
        width: 100% !important;  /* занимают всю ширину */
        display: flex;
        flex-direction: column;  /* label над input */
        margin-bottom: 15px;     /* отступ снизу */
    }

    .form-container5 .form-group label {
        margin-bottom: 5px;      /* небольшой отступ между label и input */
        display: block;
    }

    .form-container5 .form-group input {
        width: 100%;             /* input на всю ширину */
        box-sizing: border-box;  /* padding учитывается в ширине */
    }
}


.form-container2 {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background-color: rgba(108, 247, 249, 0.7);;

  }
--------------------------------------------
input[type='text']:focus,
input[type='number']:focus,
input[type='datum']:focus,
input[type='email']:focus,
input[type='tel']:focus,
select:focus,
textarea:focus {
  background-color: #fff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}
.form-container5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #6cf7f9;
  box-sizing: border-box;
  margin-bottom: 20px;
}

/* Стили для группы полей */
.form-group {
  flex: 0 0 calc(33.33% - 20px);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column; /* Устанавливаем вертикальное расположение элементов */
}

/* Стили для меток */
.form-group label {
  margin-bottom: 5px;
  text-align: left;
}

/* Стили для меток */
.form-container5 label {
  flex: 0 0 calc(33.33% - 20px); /* Устанавливаем ширину каждой метки на треть контейнера с учетом отступов */
  margin-bottom: 5px; /* Добавляем отступ снизу для всех меток */
  text-align: left; /* Выравниваем текст меток по центру */
}

/* Стили для полей ввода */
.form-container5 input[type='text'],
.form-container5 input[type='tel'],
.form-container5 input[type='email'],
.form-container5 select,
.form-container5 textarea {
  flex: 0 0 calc(33.33% - 20px); /* Устанавливаем ширину каждого поля на треть контейнера с учетом отступов */
  padding: 15px;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #E6FCFD;
  color: #333;
  transition: background-color 0.3s, box-shadow 0.3s;
}

/* Убираем отступы для каждого третьего поля в строке */
.form-container5 input[type='text']:nth-of-type(3n),
.form-container5 input[type='tel']:nth-of-type(3n),
.form-container5 input[type='email']:nth-of-type(3n),
.form-container5 select:nth-of-type(3n),
.form-container5 textarea:nth-of-type(3n) {
  margin-right: 0; /* Убираем отступ справа для каждого третьего поля в строке */
}



.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.thank-you-message {
  background-color: #e0f7ea;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #0b6623;
  color: #0b6623;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  max-width: 600px;

  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.overlay.active .thank-you-message {
  opacity: 1;
  transform: translateY(0);
}





.form-container6 {
  width: calc(50% - 20px);

  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #6cf7f9;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.form-row {
    display: flex;
    justify-content: space-between; /* Равномерно распределяем элементы по ширине контейнера */
    margin-bottom: 10px; /* Добавляем отступ между строками */
}

.checkbox-container {
    flex: 0 0 calc(50% - 5px); /* Устанавливаем ширину каждого контейнера на половину ширины родительского контейнера с учетом отступов */
}

.checkbox-container label {
    margin-bottom: 0; /* Убираем отступ снизу у меток */
}

.checkbox-container input[type='checkbox'] {
    margin-left: 5px; /* Добавляем небольшой отступ между меткой и чекбоксом */
}





.datum {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #E6FCFD;
  box-sizing: border-box;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.datum input[type='text'],
.datum input[type='number'],
.datum input[type='date'],
.datum select,
.datum textarea {
  width: 100%;
  padding: 10px 15px;
  margin-top: 5px;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #E6FCFD;
  color: #333;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.datum input:focus,
.datum select:focus,
.datum textarea:focus {
  background-color: #fff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}
#datum::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  left: 0;
  top: 0;
}
#datum {
  position: relative;
  background-color: #E6FCFD;

    /* твоя красивая иконка */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23009ea2' viewBox='0 0 24 24'%3E%3Cpath d='M7 10h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z'/><path d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11zm0-13H5V6h14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 22px;
}


  #newdatum {
    position: relative;
    background-color: #E6FCFD;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23009ea2' viewBox='0 0 24 24'%3E%3Cpath d='M7 10h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z'/><path d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11zm0-13H5V6h14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 22px;
  }

  #newdatum::-webkit-calendar-picker-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    left: 0;
    top: 0;
  }

.form-container7 {
  width: calc(50% - 20px);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #6cf7f9;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.form-container6 {
  float: left;
}

.form-container7 {
  float: right;
}

.form-container9 {
  display: inline-block;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(108, 247, 249, 0.9);
  color: #000;
  box-sizing: border-box;

  max-width: 90vw;     /* чтобы не вылезал по горизонтали */
  margin-top: 200px;
  margin-bottom: 40px;
  overflow: visible;   /* 🔥 чтобы содержимое тоже не обрезалось */
}


.form-container9 h2, 
.form-container9 h3 {
  margin-top: 15px;
  margin-bottom: 10px;
}

.form-container9 p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.cookie-consent {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: #333;
      color: #fff;
      padding: 20px;
      text-align: center;
      z-index: 1000;
       /* Окно будет скрыто по умолчанию */
    }

    .cookie-consent button {
      background-color: #4CAF50;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      margin-left: 10px;
    }

    .cookie-consent button:hover {
      background-color: #45a049;
    }

    .cookie-options {
      text-align: left;
      margin-top: 10px;
    }

    .cookie-options label {
      display: block;
      margin-bottom: 5px;
    }

    .cookie-options input {
      margin-right: 5px;
    }


.form-container12 {
    
   visibility: hidden;
}
.form-container10 {
  
  width: 100%;
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column; /* mobile: vertical */
  gap: 30px;
  font-size: 14px;
    position: relative;
}

.form-container10 h3 {
  font-weight: 600;
  margin-bottom: 10px;
}

.form-container10 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-container10 a {
  color: #ccc;
  text-decoration: none;
  transition: 0.2s;
}

.form-container10 a:hover {
  color: #fff;
  text-decoration: underline;
}

.company-info p {
  color: #bbb;
}


.form-container11 {
  display: grid;
  color: #555;
  grid-template-columns: repeat(4, 1fr);  /* 2 колонки */
  gap: 12px 20px;
}

.form-container11 label {
  grid-column: span 1;  /* каждый label занимает 1 колонку */
}

.form-container11 input[type="checkbox"] {
  grid-column: span 1;  /* checkbox рядом с label */
  margin-left: 5px;
  transform: scale(1.2);
}


.container25 {
    margin: 25%; /* отступы с каждой стороны по 15% */
    background-color: rgba(108, 247, 249, 0.80); /* #6cf7f9 с прозрачностью 75% */
    color: black; /* цвет текста черный */
    padding: 1em; /* добавим небольшой внутренний отступ для удобства */
}
/* Desktop ≥ 768px: horizontal layout */
@media (min-width: 768px) {
  .form-container10 {
    flex-direction: row; /* desktop: horizontal */
    justify-content: space-between;
    align-items: flex-start;
  }

  .copyright {
    flex-basis: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

/* Copyright block */
.copyright {
  color: #888;
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
}

.checkbox-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #000;
}

.checkbox-line input[type="checkbox"] {
    transform: scale(1.2);
}

.send-btn {
    padding: 12px 20px;
    background: #08b1b3;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 8px;
}

.send-btn:hover {
    background: #06989a;
}


/* Общие стили для мобильных устройств */
@media (max-width: 768px) {
    /* Убираем отступы и поля */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body, html {
        width: 100%;
        height: 100%;
        overflow-x: hidden; /* Убираем горизонтальную прокрутку */
    }

    /* Фоновые изображения будут занимать всю ширину экрана */
    .full-screen-image,
    .full-screen-image1,
    .full-screen-image2,
    .full-screen-image3 {
        width: 100vw;
        height: 100vh;
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* Меню */
    .menu {
        position: absolute;
        top: 10px; /* Отступ сверху уменьшен для мобильных */
        right: 10px; /* Оставляем меню справа */
        display: flex;
        flex-direction: column; /* Меню в одну колонку */
        gap: 10px; /* Уменьшаем расстояние между элементами */
    }

    .menu a {
        font-size: 1em; /* Уменьшаем шрифт для мобильных */
        padding: 10px 15px; /* Увеличиваем отступы для удобства */
        border-radius: 5px;
    }

    /* Текстовые блоки */
    .text-container {
        top: 20px; /* Уменьшаем отступ сверху */
        left: 10px;
        right: 10px;
        text-align: center;
        color: white;
    }

    .main-text {
        font-size: 2em; /* Уменьшаем шрифт для заголовка */
    }

    .sub-text {
        font-size: 1em; /* Уменьшаем шрифт для подзаголовка */
    }

    /* Контейнеры для описания */
    .services-container,
    .services-container1 {
        padding: 20px 10px; /* Уменьшаем отступы для мобильных */
        text-align: left;
    }

    .services-container h2,
    .services-container1 h2 {
        font-size: 2em; /* Уменьшаем заголовки */
    }

    .services-container p,
    .services-container1 p {
        font-size: 1em; /* Уменьшаем основной текст */
    }

    /* Формы */
  .form-container5, .form-container6, .form-container7 {
        width: 100%; /* Формы будут занимать всю ширину экрана */
        padding: 15px;
    }
     
    .form-container5 input,
    .form-container5 select,
    .form-container5 textarea {
        width: 100%; /* Элементы формы будут занимать всю ширину экрана */
    }

    /* Окно согласия на использование cookie */
    .cookie-consent {
        padding: 15px;
    }

    .cookie-consent button {
        padding: 10px;
    }
}
 ------------------
/* Контейнер для кнопок */
.button-container3 {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
}

/* Стили для кнопок */
.button-container3 {
    position: fixed;
    bottom: 20px; /* Отступ от низа */
    left: 50%; /* Центрируем по горизонтали */
    transform: translateX(-50%); /* Сдвиг влево на половину ширины */
    display: flex; /* Используем flex для кнопок */
    gap: 40px; /* Пробел между кнопками */
    z-index: 100; /* Убедитесь, что кнопки выше других элементов */
}
.button-container3 a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #8aeae9;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.button-container3 a:hover {
    background-color:  #2eeae7;
}

-------------------------------
.button-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
}
.center-button-container {
    position: fixed; fixed /* Фиксированное положение */
    top: 50%; /* Центрирование по вертикали */
    left: 50%; /* Центрирование по горизонтали */
    transform: translate(-50%, -50%); /* Центрирование кнопки */
    display: flex; /* Используем flex для кнопок */
    gap: 40px; /* Пробел между кнопками */
    z-index: 100; /* Убедитесь, что кнопки выше других элементов */
}

.center-button {
    padding: 15px 30px;

    background-color: #8aeae9;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
    box-sizing: border-box;
}

.center-button:hover {
    background-color: #2eeae7;
}
.center-button-container {
    transition: opacity 0.3s ease;
}
---------------------------------------
.content3 {
    text-align: center;
  }

.form-container8 {
    width: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #6cf7f9;
    box-sizing: border-box;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }

  .title-container8 {
    grid-column: span 3;
    /* Занимаем три колонки */
  }

  .title-container8 h2 {
    margin-top: 0;
    width: max-content;
    margin: 0 auto;
  }

  .form-container8 img {
    max-width: 100%;
    height: 50px;
  }

  .form-container8 div {
    text-align: center;
  }

-------------------------------


/* Для мобильных устройств */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column; /* Вертикальное размещение кнопок на мобильных устройствах */
        gap: 10px; /* Меньший отступ между кнопками на маленьких экранах */
    }

    .button-container a {
        padding: 10px 20px; /* Уменьшенные отступы */
        font-size: 1em; /* Уменьшенный размер текста */
    }
}




---------------------------------



-----
/* ==================== ОСНОВНЫЕ СТИЛИ ==================== */


/* ==================== ТЕКСТОВЫЕ ЭЛЕМЕНТЫ ==================== */
.text-container {
  position: absolute;
  top: 10px;
  text-align: center;
  color: white;
}

.main-text { font-size: 3em; font-weight: bold; }
.sub-text { font-size: 1.5em; }

/* ==================== МЕНЮ ==================== */
.menu {
  position: absolute;
  top: 60px;
  right: 10px;
  display: flex;
  gap: 20px;
}

.menu a {
  color: white;
  text-decoration: underline;
  font-size: 1.2em;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s;
}

.menu a:hover {
  background-color: #8aeae9;
  text-decoration: none;
}

/* ===== ГАМБУРГЕР ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 21px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ==================== КОНТЕЙНЕРЫ С УСЛУГАМИ ==================== */
#umzuege {
  background-color: #fff; /* черный фон */
  color: #000; /* белый текст */
  padding: 50px 20px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* Заголовки */
#umzuege h1, #umzuege h2, #umzuege h3 {
  color: #000;
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Списки */
#umzuege ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

#umzuege ul li {
  margin-bottom: 10px;
}

/* CTA-блок */
#umzuege p strong {
  color: #ffd700; /* золотой цвет для выделения важного */
}

/* Ссылка/кнопка */
.umzugs-cta {
  display: inline-block;
  background-color: #ffd700; /* золотой фон */
  color: #fff; /* черный текст */
  font-weight: bold;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.umzugs-cta:hover {
  background-color: #e6c200; /* чуть темнее при наведении */
}
.transport-container {
  background-color: #fff; /* белый фон */
  color: #000; /* черный текст */
  width: 100%;
  min-height: 100vh; /* занимает весь экран */
  display: flex;
  justify-content: flex-start; /* центрируем по горизонтали */
  align-items: center;     /* центрируем по вертикали */
  padding: 50px 20px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* Внутренний контент ограниченной ширины для удобства чтения */
.transport-container section#transport {
  max-width: 1200px; /* ограничиваем ширину текста */
  width: 100%;
}

/* Заголовки */
.transport-container h1,
.transport-container h2,
.transport-container h3 {
  color: #000;
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Списки */
.transport-container ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.transport-container ul li {
  margin-bottom: 10px;
}

/* Выделение ключевых слов */
.transport-container p strong {
  color: #e6c200; /* оранжевый акцент */
}

/* CTA-кнопка */
.transport-cta {
  display: inline-block;
  background-color:#ff6600;; /* яркая оранжевая кнопка */
  color: #fff; /* белый текст */
  font-weight: bold;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.transport-cta:hover {
  background-color:#e65c00; /* темнее при наведении */
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .transport-container {
    padding: 30px 15px;
  }

  .transport-cta {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  #umzuege {
    padding: 30px 15px;
  }

  .umzugs-cta {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
}
.services-container1 {
  width: 100vw;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  text-align: center;
}

.services-container h2,
.services-container1 h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.services-container p,
.services-container1 p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 20px;
}

/

/* ==================== КНОПКИ ==================== */

/* ==================== COOKIE ОКНО ==================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  z-index: 1000;
  
}

.cookie-consent button {
  background-color: #4CAF50;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  margin-left: 10px;
  color: white;
}

/* ==================== МОБИЛЬНАЯ ВЕРСИЯ ==================== */
@media (max-width: 768px) {
  .main-text { font-size: 2em; }
  .sub-text { font-size: 1em; }

  /* Показываем гамбургер */
  .menu-toggle { display: flex; }

  /* Прячем обычное меню */
  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color : #6cf7f9;
    padding: 20px;
    border-radius: 10px;
    position: fixed;
    top: 60px;
    right: 10px;
    z-index: 1000;
  }

  .menu.active { display: flex; }

  .menu a {
    font-size: 1.1em;
    padding: 10px 15px;
  }

  /* Формы — на всю ширину */
  
  .form-container select,
  .form-container textarea,
  .form-container5 input,
  .form-container5 select,
  .form-container5 textarea {
    width: 100%;
  }

  /* Кнопки — одна под другой */
    .button-container, .button-container3 {
      flex-direction: column;
      gap: 10px;
      bottom: 10px;
    }

    .button-container a, .button-container3 a {
      padding: 10px 20px;
      font-size: 1em;
    }
  }

@media (max-width: 768px) {
  .form-container input[type='text'],
  .form-container input[type='number'],
  .form-container input[type='email'],
  .form-container select,
  .form-container textarea {
      width: 100%;       /* Занимаем всю ширину строки */
      margin-right: 0;   /* Убираем отступ справа */
  }
}


.center-button-container-mobile {
    display: none;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .center-button-container {
        display: none; /* Скрываем десктопную кнопку */
    }

      
                @media (max-width: 768px) {
                        /* ... другие мобильные стили ... */

                  .center-button-container-mobile {
                            /* 🔥 КРИТИЧЕСКИ ВАЖНО: Должно быть fixed */
                            position: fixed; 

                            top: 50%;                 
                            left: 50%;                
                            transform: translate(-50%, -50%); 

                            z-index: 9999;

                            /* Стили для управления JS */
                            display: flex; 
                            opacity: 0; 
                            pointer-events: none; 

                            transition: opacity 0.3s ease; 
                    justify-content: center;
                    align-items: center;
                    width: 90%; 
                    max-width: 300px;
                }
            }
            .center-button {
                    /* Убедитесь, что здесь нет конфликтов, которые могут повлиять на высоту */
                    padding: 15px 30px;
                    background-color: #8aeae9;
                    color: white;
                    text-decoration: none;
                    font-size: 1.2em;
                    border-radius: 5px;
                    transition: background-color 0.3s;
                    box-sizing: border-box;
                }
            }
@media (max-width: 768px) {
    .checkbox-line {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin: 0;
        padding: 0;
        gap: 4px; /* минимальное расстояние между чекбоксом и текстом */
    }

    .checkbox-line input {
        margin: 0;
        padding: 0;
    }

    .checkbox-line span {
        margin: 0;
        padding: 0;
        line-height: 1.3;
    }

    .submit-button {
        margin: 0;
        padding: 0;
        text-align: left;
    }
}