  /* Основные стили */
        body {
            font-family:Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color:#ffffff; 
        }

        /* Шапка */
        .header {
            display: flex;
            font-family: 'Trebuchet MS', sans-serif ;
            color: white;
            align-items: center;
            justify-content: space-between;
            padding: 10px 40px;
            background-color: #001446;
            position: relative;
        }
        .header-content {
    text-align: center;
    margin-top: 20px; /* Отступ для отдаления контента от логотипа */
}
        /* Контейнер для логотипа */
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Логотип */
        .logo {
            height: 130px; /* Высота логотипа задаёт высоту шапки */
            max-width: 100%;
        }

        /* Навигация */
        .nav {
            display: flex;
            align-items: center;
        }

        /* Стили для иконок контактов */
        .contact-icons {
            display: flex;
            align-items: center;
        }

        .contact-icons a {
            text-decoration: none;
            color: #faf5eb;
            margin-left: 15px;
            font-size:  20px; /* Размер иконок */
        }

        /* Стили для соцсетей */
        .social-icons {
            display: flex;
            align-items: center;
        }

        .social-icons a {
            text-decoration: none;
            color: #faf5eb;
            margin-left: 10px;
            font-size: 20px; /* Размер иконок соцсетей */
        }
        .section {
            padding: 20px;
            background-color: #faf5eb;
            color: #000000;
        }

        .section h2 {
            text-align: center;
            margin-bottom: 20px;
        }
        .section h3 {
            text-align: center;
            margin-bottom: 15px;
        }
        .section h4 {
            text-align: center;
            margin-bottom: 10px;
            font-style: italic;
        }
        .section1{
            width: 60%;
      
      margin: auto;
      text-align: justify;
      padding: 20px;
            padding: 20px;
            background-color: #ffffff;
            color: #000000;
        }
        .section1 li{
            text-align: left;
        }
        .section1 center{
            width: 100%;
            text-align: center;
        }
        .section1 h2 {
            text-align: center;
            margin-bottom: 20px;
        }
        .section1 h3 {
            text-align: center;
            margin-bottom: 15px;
        }
        .section1 h4 {
            text-align: center;
            margin-bottom: 10px;
            font-style: italic;
        } 
        .slider {
            position: relative; 
            width: 100vw; /* Высота слайдера 95% высоты экрана 0.568*/
            height: calc(100vW * 0.4);

            width: 100%;
            max-width: 100%; /* Максимальная ширина слайдера */
            aspect-ratio: 16 / 9; /* Соотношение сторон 16:9 */
            margin: auto;
            overflow: hidden;
            border-radius: 10px;
            background-color:   #FFffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            position: relative;
            box-sizing: border-box;
        }

        .slide img {
            object-fit: cover; /* Заполняет весь слайдер, сохраняя пропорции */
            -webkit-user-select: none; /* Отключение копирования изображения */
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            pointer-events: none; /* Запрет на взаимодействие с изображением */
            width: 100vw; /* Ширина слайдера 80% ширины экрана */
                height: calc(100vw * 0.4); /* Высота слайдера под соотношение 9:16 */
                max-height: calc(100vw * 0.4); 
            object-fit: cover; /* Обеспечивает корректное отображение изображений */
        }
        .expanded-slider {
                width: 90vw; /* Ширина слайдера 80% ширины экрана */
                height: calc(90vw *0.4); /* Высота слайдера под соотношение 9:16 */
                max-height: 40vh; /* Ограничение высоты слайдера */
            }
        /* Стили для заголовков поверх слайдов */
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон для улучшения видимости текста */
            padding: 10px 20px;
            border-radius: 8px;
            z-index: 10; /* Устанавливает, что текст находится поверх изображения */
        }

        .slide-content h2, .slide-content h3 {
            margin: 5px 0;
        }

        .slide-content h2 {
            font-size: 2.0em;
        }

        .slide-content h3 {
            font-size: 1.2em;
            font-weight: normal;
        }

        .slider-nav {
            position: absolute;
            top: 80%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
		/* Стили для кнопки Перезвоним */
/* Стили для кнопки Перезвоним */
.callback-button {
    display: inline-block;
    margin-top: 10px;
    background-color: #d2b99b; /* Основной цвет кнопки */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s; /* Переход для плавного смещения */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.callback-button:hover {
    background-color: #C19F7B; /* Цвет кнопки при наведении */
    transform: translateY(-5px); /* Смещение кнопки вверх на 5px */
}


/* Расположение кнопки на слайдере */
.slider-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: rgba(0, 0, 0, 0.6); /* Полупрозрачный фон */
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 80%;
}

        .prev, .next {
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 10px;
            cursor: pointer;
            user-select: none;
            border: none;
            font-size: 18px;
        }
        /* Стили для карточек с учетом адаптивности */
        .card-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .card {
            background: white;  /*//url('logo_ohana.png') no-repeat center center / cover;  Здесь замените путь на сгенерированное изображение */
            width: 300px;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.2s;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .card-body {
            padding: 15px;
        }

        .card-title {
            text-shadow: rgb(251, 247, 247) 2px 0px 2px, rgb(245, 243, 243) 0px 2px 2px, rgb(247, 243, 243) 0px -2px 2px, rgb(248, 240, 240) -2px 0px 2px;
            font-size: 1.2em;
            margin-bottom: 10px;
            color: #333;
        }

        .card-description {
		    background-color: rgba(255, 255, 255, 0.6);
            color: black;
            font-size: 0.9em;
            margin-bottom: 15px;
        }

        .card-button {
            display: inline-block;
            background-color: #d2b99b;
            color: white;
            padding: 10px 15px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .card-button:hover {
            background-color: #C19F7B;
        }

  /* Стили для подвала */
  .footer {
            background-color: #001446;
            color: white;
            padding: 20px;
            text-align: center;
       
        }

        .footer a {
            color: red;
            text-decoration: none;

            margin: 0 10px;
        }

        .footer a:hover {
            text-decoration: underline;
        }
        
    .slider1-container {
      width: 80%;
      background: #ffffff;
      margin: auto;
      text-align: center;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 10px;
      max-width: 600px;
    }
    .slider1-content {
      display: none;
    }
    .slider1-content.active {
      display: block;
    }
    .slider1-title {
      font-size: 1.2em;
      color: #333;
      margin-bottom: 10px;
    }
    .slider1-text {
      font-size: 1em;
      color: #555;
      line-height: 1.4em;
    }
    .slider1-nav {
      margin-top: 20px;
    }
    .slider1-nav button {
      padding: 10px;
      border: none;
      border-radius: 5px;
      margin: 0 5px;
      cursor: pointer;
    }
        /* Для мобильных устройств: логотип вверху, меню ниже */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                align-items: center;
            }
            .nav {
                margin-top: 10px;
            }
        }