<style>

html {
  scroll-behavior: smooth; /* Включає плавний скрол */
}
        body {
            font-family: 'Roboto', Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
            color: #333;
            line-height: 1.6;
			background: url('image/pino.jpg') no-repeat center center fixed;
  background-size: cover;
        }
		
hr {
    border: none;
    border-bottom: 1px solid #f9f9f9;
}

/* Общий стиль для шапки */
.header {
    background-image: url('image/texture_x.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

/* Верхнее меню всегда остается на месте */
.header-top {
    display: flex;
    justify-content: center; /* Центруем контент */
    align-items: center;
    padding: 0; /* Убираем внутренние отступы */
    background: rgba(0, 0, 0, 0.7); /* Полупрозрачный фон */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 50px; /* Фиксированная высота полоски */
}

/* Контейнер для центрирования контента */
.header-top .container {
    max-width: 1200px;
    margin: 0 auto; /* Центруем контейнер */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none; /* Убираем белый фон */
    border-radius: 0; /* Убираем заокругления */
    padding: 0 15px; /* Добавляем боковые отступы */
}

/* Логотип */
.logo img {
    height: 100%; /* Высота логотипа на всю полоску */
    max-height: 50px; /* Ограничение высоты логотипа */
    width: auto;
    display: block;
}

/* Верхнее меню */
.top-menu a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.top-menu a:hover {
    color: #f28a00; /* Новый цвет при наведении */
}

/* Нижняя часть шапки */
.header-bottom {
    height: 700px; /* Збільшена висота */
    display: flex;
    align-items: flex-start; /* Початкове вирівнювання по вертикалі */
    justify-content: center;
    padding-top: 10%; /* Відступ зверху 30% */
    color: white;
    position: relative;
    background: transparent; /* Фон прозорий */
}

.header-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Вирівнювання елементів ближче до верху */
    width: 100%;
    padding: 0 20px;
	background: transparent; /* Фон прозорий */
	box-shadow: none; /* Видаляємо тінь */
}

/* Левая половина */
.header-bottom .left h1 {
    font-size: 48px; /* Збільшений шрифт */
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-align: left;
    color: #f28a00; /* Оранжевий колір заголовка */
    font-family: 'Arial', sans-serif; /* Чіткий і жирний шрифт */
	background: transparent; /* Фон прозорий */
}

/* Правая половина */
.header-bottom .right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
	background: transparent; /* Фон прозорий */
}

.contact-info {
    font-size: 24px;
    font-weight: bold;
    background: transparent; /* Фон прозорий */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info a {
	color: #f28a00; /* Оранжевий колір при наведенні */
    
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: black;
}

/* Кнопка замовлення */
.main-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 0; /* Без заокруглень */
    background: #f28a00; /* Оранжевий фон */
    transition: all 0.3s ease;
}

.main-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #f28a00;
    color: #f28a00;
}
/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .header-bottom {
        height: 500; /* Автоматична висота */
        display: flex;
        flex-direction: column; /* Вертикальне розташування */
        align-items: center; /* Центруємо елементи */
        justify-content: center;
        padding: 20px 10px; /* Відступи */
        text-align: center; /* Текст по центру */
        overflow: hidden; /* Відсікаємо зайве */
        box-shadow: none; /* Видаляємо тінь */
        margin: 0; /* Прибираємо зайві відступи */
    }

    .header-bottom .container {
        flex-direction: column; /* Вертикальне розташування */
        align-items: center; /* Центруємо вміст */
        max-width: 100%; /* Контейнер займає весь екран */
        padding: 0; /* Забираємо зайві внутрішні відступи */
        margin: 0 auto; /* Центруємо контейнер */
        box-shadow: none; /* Видаляємо тінь */
    }

    .header-bottom .left h1 {
        font-size: 32px; /* Менший шрифт */
        line-height: 1.3;
        margin-bottom: 20px; /* Відступ знизу */
        text-align: center; /* Текст по центру */
    }

    .header-bottom .right {
        text-align: center; /* Центруємо текст */
        align-items: center; /* Центруємо елементи */
        gap: 15px; /* Відстань між елементами */
        margin-top: 20px; /* Відступ зверху */
    }

    .contact-info {
        font-size: 28px; /* Розмір тексту для контактів */
    }

    .main-menu a {
        font-size: 22px; /* Розмір тексту кнопки */
        padding: 8px 15px; /* Відступи кнопки */
        border-radius: 0; /* Прибираємо закруглення */
    }
}


/* Стили для меню на мобильных устройствах */
.menu-toggle {
    display: none; /* Скрываем кнопку по умолчанию */
}

/* Показываем кнопку на мобильных устройствах */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-items {
        display: none; /* Прячем меню по умолчанию */
    }

    .menu-items.active {
        display: block; /* Отображаем меню при активации */
        position: absolute;
        top: 50px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    .menu-items a {
        display: block;
        color: white;
        text-decoration: none;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .menu-items a:hover {
        color: #b02a37;
    }
}



/* Доданий стиль для блоку з картинкою заводу */
.footer-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
}

.footer-image img {
    max-width: 100%;
    height: auto;
}

/* Приховуємо блок з картинкою на мобільних пристроях */
@media (max-width: 768px) {
    .footer-image {
        display: none;
    }
}

/* КОНЕЦ ШАПКИ!!!!!! */



body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    
    background-repeat: repeat; /* Повторення зображення */
    background-size: auto; /* Нормальний розмір текстури */
    background-color: #f4f4f9; /* Резервний колір на випадок, якщо зображення не завантажиться */
    color: #333;
    line-height: 1.6;
	font-family: Arial, sans-serif;
}
	
	/* Контент */

.content {
    position: relative;
    z-index: 1;
    background: white;
    padding: 20px;
    margin-top: 400px; /* Учитывает высоту шапки */
}




        /* Контейнер */
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 25px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        h1, h2 {
            text-align: center;
            color: #212529;
            margin-bottom: 20px;
        }

        form {
            margin-bottom: 30px;
            text-align: center;
        }

        input[type="text"] {
            width: 70%;
            padding: 15px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 16px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        input[type="submit"] {
            padding: 12px 30px;
            border: none;
            background-color: #dc3545;
            color: white;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        input[type="submit"]:hover {
            background-color: #b02a37;
            transform: scale(1.05);
        }
	
	
	
	
	
	
/* Секція Про нас з повною заливкою */
.about-us {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  width: 100%;
  padding: 40px 20px;
  background: #f9f9f9; /* Фон, що заливатиме всю ширину екрану */
  box-sizing: border-box;
}

.about-us-container {
  display: flex;
  max-width: 1200px; /* Максимальна ширина для контенту */
  margin: 0 auto; /* Центрування контенту */
  width: 100%;
}

.about-us-left {
  flex: 1;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-us-image {
  width: 100%;
  height: 100%; /* Забезпечення повного покриття висоти контейнера */
  object-fit: cover;
  object-position: bottom; /* Притискає нижню частину зображення до низу */
}

.about-us-right {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  text-align: left;
}

.about-us-title {
  font-size: 36px;
  font-weight: bold;
  color: #f28a00; /* Колір як у кнопки */
  margin-bottom: 20px;
  text-align: left;
}

.about-us-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.about-us-description ul {
  margin: 10px 0 0 20px; /* Відступ для списку */
  padding: 0;
  color: #555;
}

.about-us-description li {
  font-size: 16px;
  line-height: 1.6;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
    padding: 20px;
  }

  .about-us-container {
    flex-direction: column;
  }

  .about-us-left {
    display: none; /* Приховати картинку у мобільній версії */
  }

  .about-us-right {
    max-width: 100%;
    padding: 20px;
  }

  .about-us-title {
    font-size: 28px;
    text-align: center; /* Центрування заголовка у мобільній версії */
  }

  .about-us-description {
    font-size: 14px;
    text-align: left; /* Текст вирівняний по лівому краю */
  }
}





	
	
	
	
	

/* Основний стиль для каруселі */
.carousel {
  position: relative;
  width: 92%;
  max-width: 1200px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: #000; /* Фон для завантаження */
}

/* Трек слайдів */
.carousel-track-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* Слайди */
.carousel-slide {
  min-width: 100%;
  height: 400px; /* Висота каруселі */
  object-fit: cover;
  border-radius: 0px;
}

/* Кнопки */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  border: none;
  border-radius: 50%;
  padding: 15px;
  cursor: pointer;
  z-index: 100;
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 20px;
}

.carousel-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.carousel-button.prev {
  left: 15px;
}

.carousel-button.next {
  right: 15px;
}

/* Індикатори */
.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 100;
}

.indicator {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator.active {
  background: rgba(255, 255, 255, 1);
}

.indicator:hover {
  background: rgba(255, 255, 255, 1);
}

/* Адаптивність */
@media (max-width: 768px) {
  .carousel-slide {
    height: 250px;
  }

  .carousel-button {
    padding: 10px;
    font-size: 18px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }
}


/* Загальний стиль розділу */
.why-choose-us {
  padding: 50px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

/* Контейнер для карток */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Стиль картки */
.card {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.5s ease forwards;
}

.card:nth-child(1) {
  animation-delay: 0.2s;
}

.card:nth-child(2) {
  animation-delay: 0.4s;
}

.card:nth-child(3) {
  animation-delay: 0.6s;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Іконка в картці */
.icon-container {
  margin-bottom: 20px;
}

.card-icon {
  width: 60px;
  height: 60px;
}

/* Заголовок картки */
.card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #f28a00; /* Акцентний колір */
}

/* Опис картки */
.card-description {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Адаптивність */
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 90%;
  }
}

/* Анімація появи */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Стиль кнопки виклик форми*/
.open-form-button {
  padding: 12px 20px;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.open-form-button:hover {
  background-color: #b02a37;
}

/* Модальне вікно */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.modal h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.modal input {
  width: 92%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.modal .submit-button {
  width: 100%;
  padding: 12px;
  background-color: #f28a00; /* Помаранчевий колір кнопки */
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal .submit-button:hover {
  background-color: #e64a19; /* Трохи темніший помаранчевий на ховері */
  transform: scale(1.02); /* Легка анімація масштабування */
}

.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #999;
}

.close-button:hover {
  color: #f28a00; /* Помаранчевий колір на ховері */
}

/* Стиль статусу форми */
.form-status {
  margin-top: 15px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  display: none;
}
.form-status.success {
  color: #28a745; /* Зелений для успіху */
}
.form-status.error {
  color: #f28a00; /* Помаранчевий для помилок */
}


/* Контейнер акції */
.promo-container {
	background-image: url('image/texture.jpg');
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  overflow: hidden;
  padding: 40px 20px;
  background: transparent; /* Прозорий фон */
}

/* Заголовок */
.promo-title {
  font-size: 32px;
  font-weight: bold;
  color: #f28a00;
  margin-bottom: 10px;
  text-shadow: none; /* Прибрано тінь */
}

/* Підзаголовок */
.promo-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  color: #333; /* Темний текст для контрасту */
}

/* Контейнер таймера */
.timer-container {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333; /* Темний текст для контрасту */
}

/* Таймер */
.timer {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.timer span {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 70px;
  font-weight: bold;
  color: red; /* Яскравий червоний для акценту */
  
}

.timer span::after {
  content: attr(data-label);
  font-size: 14px;
  color: #333; /* Темний текст для читабельності */
  margin-top: 5px;
}

/* Кнопка */
.open-form-button {
  display: inline-block;
  padding: 15px 30px;
  background: #f28a00;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.open-form-button:hover {
  background: #e64a19;
  transform: scale(1.05);
}

/* Адаптивність */
@media (max-width: 768px) {
  .promo-title {
    font-size: 24px;
  }

  .promo-subtitle {
    font-size: 16px;
  }

  .timer span {
    font-size: 28px;
  }

  .open-form-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}


/* Загальний стиль секції ВІТРИНА */
.products-showcase {
  text-align: center;
  padding: 40px 20px;
  font-family: 'Roboto', Arial, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

/* Ряди товарів */
.products-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

/* Товар */
.product {
  width: 300px;
  position: relative; /* Для позиционирования цены */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #f28a00;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

.product:hover .product-image {
  opacity: 0.9;
}

/* Цена товара */
.product-price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7); /* Полупрозрачный черный фон */
  color: #fff;
  padding: 5px 10px;
  border-radius: 0px;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none; /* Убираем подчеркивание */
  display: inline-block; /* Делаем ссылку блочной, чтобы сохранить стили */
}

.product-price:hover {
  background: #f28a00; /* Цвет фона при наведении */
  transform: scale(1.1); /* Увеличение */
}

.product-price a {
  text-decoration: none; /* Убираем подчеркивание у ссылки внутри */
  color: inherit; /* Наследуем цвет текста */
}

/* Опції */
.showcase-options {
  margin: 30px auto;
  max-width: 1000px;

}

.options-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  text-align: left;
}

.options-table td {
  padding: 10px 20px;
  border-bottom: 1px solid #eaeaea;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.options-table td:hover {
  background: #f9f9f9;
  color: #f28a00;
}

.checkmark {
  color: #f28a00;
  font-size: 20px;
  margin-right: 10px;
}

.custom-phone-link {
    color: #f28a00; /* Оранжевий колір, як на сайті */
    text-decoration: none; /* Відключення підкреслення */
    font-weight: bold;
  }

  .custom-phone-link:hover {
    text-decoration: underline; /* Підкреслення при наведенні */
  }



/* Кнопка */
.open-form-button {
  display: inline-block;
  padding: 15px 30px;
  background: #f28a00;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.open-form-button:hover {
  background: #e64a19;
  transform: scale(1.05);
}

/* Адаптивність */
@media (max-width: 768px) {
  .products-row {
    flex-direction: column;
    gap: 20px;
  }

  .product {
    width: 100%;
  }

  .product-name {
    font-size: 18px;
  }

  .options-table td {
    font-size: 16px;
  }

  .open-form-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}



/* Стиль секції КАЛЬКУЛЯТОР */
.calculator-section {
  text-align: center;
  padding: 40px 20px;
   background: transparent; /* Фон прозорий */
  font-family: 'Roboto', Arial, sans-serif;
  width: 90%; /* Займає всю ширину екрану */
  margin: 0 auto;
  box-shadow: none; /* Видалено тінь */
  border-radius: 0; /* Видалено заокруглення */
}

/* Заголовок */
.calculator-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}

/* Форма */
.calculator-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 0px; /* Залишено заокруглення лише для форми */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Тінь лише для форми */
}

/* Група елементів */
.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #555;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 0px;
  box-sizing: border-box;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border: 1px solid #f28a00;
  box-shadow: 0 0 8px rgba(255, 87, 34, 0.2);
}

/* Кнопка */
.calculate-button {
  width: 100%;
  padding: 15px 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #f28a00;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.2s ease;
}

.calculate-button:hover {
  background: #e64a19;
  transform: scale(1.02);
}

/* Адаптивність */
@media (max-width: 768px) {
  .calculator-form {
    gap: 15px;
    width: 100%; /* Забезпечує, що форма не виходить за межі екрану */
    max-width: 400px; /* Обмеження максимальної ширини */
    margin: 0 auto; /* Центрування форми */
    padding: 15px; /* Зменшення відступів для мобільної версії */
    box-sizing: border-box; /* Урахування padding у ширині */
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group select {
    font-size: 14px;
  }


  .calculate-button {
    font-size: 16px;
  }
}

.hidden {
  display: none;
}

.hidden.visible {
  display: block;
}




/* Загальний стиль для секції ПРО ФІРМУ З ЦИФРАМИ*/
.stats-section {
  position: relative;
  background: url("image/sale.jpg") no-repeat center center / cover;
  color: #fff;
  text-align: center;
  padding: 60px 20px; /* Вужча секція */
}

.stats-title {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #444; /* Білий заголовок */
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  width: 30%; /* Рівномірний розподіл для трьох блоків */
  text-align: center;
}

.stat-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.stat-label {
  font-size: 18px;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #444; /* Темний колір для цифр */
}





/* Загальний стиль футера */
footer {
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  background: #000;
}

/* Верхній футер */
.footer-top {
  background: #111; /* Трохи світліший чорний */
  padding: 20px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 17px;
  box-sizing: border-box;
}

/* Ліва частина */
.footer-left {
  max-width: 33%;
}

.footer-left p {
  margin: 5px 0;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

/* Центральна частина */
.footer-center {
  max-width: 33%;
  text-align: center;
}

.footer-center img {
  max-width: 150px; /* Розмір логотипа */
  margin-bottom: 10px;
}

.footer-center a {
  color: #fff; /* Білий колір для посилання */
  text-decoration: none;
  display: block;
  margin-top: 5px;
}

.footer-center a:hover {
    color: #f28a00; /* Стандартний оранжевий колір при наведенні */
}

/* Права частина */
.footer-right {
  max-width: 33%;
  text-align: right;
}

.footer-right p {
  margin: 5px 0;
}

.footer-right a {
	color: #fff; /* Білий колір для посилання */
  text-decoration: none;
}

.footer-right a:hover {
    color: #f28a00; /* Стандартний оранжевий колір при наведенні */
}

/* Адаптивність */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    max-width: 100%;
    margin-bottom: 20px;
  }
}


/* Нижній футер */
.footer-bottom {
  background: #000; /* Темний чорний */
  padding: 10px 15px;
  font-size: 14px;
  border-top: 1px solid #333;
  color: #fff;
}

.footer-container1 {
  max-width: 1200px; /* Ширина контейнера */
  margin: 0 auto; /* Центрування контейнера */
  text-align: center; /* Текст по центру контейнера */
}

.footer-container1 p {
  margin: 0;
  text-align: center; /* Вирівнювання тексту в центрі */
}

.footer-container1 a {
  color: #fff; /* Білий колір для посилання */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-container1 a:hover {
  color: #f28a00; /* Стандартний оранжевий колір при наведенні */
}




/* Стиль секції "ЗВОРОТНІЙ ЗВ'ЯЗОК" */
.feedback-section {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
  font-family: 'Roboto', Arial, sans-serif;
}

/* Заголовок */
.feedback-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}

/* Контейнер для поділу на дві частини */
.feedback-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1060px; /* Ваша ширина */
  margin: 0 auto;
  gap: 20px;
}

/* Ліва частина: форма */
.feedback-form {
  flex: 1;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.feedback-form .form-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.feedback-form .form-group {
  margin-bottom: 15px;
}

.feedback-form input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.feedback-form input:focus {
  border: 1px solid #f28a00;
  box-shadow: 0 0 8px rgba(255, 87, 34, 0.2);
}

.feedback-form .submit-button {
  width: 100%;
  padding: 15px 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #f28a00;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.2s ease;
}

.feedback-form .submit-button:hover {
  background: #e64a19;
  transform: scale(1.02);
}

/* Права частина: зображення */
.feedback-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-image img {
  width: auto;
  height: 100%; /* Розтягнення по висоті */
  max-width: 100%;
  object-fit: contain; /* Збереження пропорцій */
}

/* Адаптивність */
@media (max-width: 768px) {
  .feedback-container {
    flex-direction: column;
    gap: 30px;
  }

  .feedback-form {
    order: -1; /* Форма зверху */
    width: 100%; /* Адаптація під мобільні */
    max-width: 400px; /* Зменшення ширини форми */
    margin: 0 auto; /* Центрування форми */
  }

  .feedback-image {
    order: 0; /* Картинка знизу */
    margin-bottom: 20px;
  }
}





/* Розділ "Наші партнери" */
.partners-section {
  text-align: center; /* Центрування елементів */
  padding: 20px 0; /* Відступи зверху та знизу */
  background: transparent; /* Прозорий фон */
}

.partners-title {
  font-size: 24px; /* Розмір тексту */
  font-weight: bold; /* Жирний текст */
  color: #333; /* Темний колір тексту */
  margin-bottom: 20px; /* Відступ між назвою та зображенням */
}

.partners-image img {
  width: 100%; /* Ширина зображення по всій доступній ширині */
  max-width: 1200px; /* Максимальна ширина зображення */
  height: auto; /* Зберігає пропорції зображення */
  display: block; /* Видаляє зайві відступи зображення */
  margin: 0 auto; /* Центрування зображення */
}






    </style>