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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: none;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 100px 0 50px;
    /* color: rgba(255, 215, 165, 1.0); */
    /* color: #000; */
}

header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: rgba(255, 205, 155, 1.0);
}

header p {
    font-size: 1.2em;
    opacity: 0.8;
    color: #000;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 30px 0;
}

.feature {
    background: rgba(255, 215, 165, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* .feature-lines { */
    /* background: repeating-linear-gradient( */
        /* 45deg, */
        /* rgba(255, 215, 165, 0.8), */
        /* rgba(255, 215, 165, 0.8) 10px, */
        /* #fff 10px, */
        /* #fff 20px */
      /* ); */
    /* padding: 30px; */
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
/* } */

.feature h2 {
    margin-bottom: 15px;
    color: #ff8c00;
}
/* .feature-lines h2 { */
    /* margin-bottom: 15px; */
    /* color: #ff8c00; */
/* } */

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

button {
    padding: 15px 30px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    background: #ff8c00;
    color: #fff;
    transition: background 0.3s ease;
}

button:hover {
    background: #ffa500;
}

footer {
    text-align: center;
    padding: 30px 0;
    font-size: 0.75em;
    color: #000;
    opacity: 0.7;
}

@media (max-width: 768px) {
    header {
        padding: 50px 0 30px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    button {
        width: 100%;
        margin: 10px 0;
    }
}

.background-right {
    position: absolute;
    top: 0;
    right: 0; /* Прижимаем к правому краю */
    height: 100vh; /* Высота во весь экран */
    z-index: -1; /* Фон находится под контентом */
}

.background-image {
    width: 100vw; /* Ширина равна ширине окна браузера */
    height: 100%;
    object-fit: cover; /* Сохраняем пропорции, обрезая лишнее */
    /* Сдвигаем изображение влево, чтобы часть ушла за экран */
    left: -50vw; 
    position: absolute;
    top: 0;

    overflow-y: scroll;
    padding-right: 17px; /* Increase/decrease this value for cross-browser compatibility */
    box-sizing: content-box; /* So the width will be 100% + 17px */
}


/* Контейнер для выпадающего меню (важно для позиционирования) */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Стили для кнопки выпадающего списка */
.dropbtn {
    margin: 0px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    background: #ff8c00;
    color: #fff;
    min-width: 160px;
    transition: background 0.3s ease;
}

/* Выпадающее содержимое (скрыто по умолчанию) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ff8c00; /* Тот же оранжевый цвет, что и у кнопки */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Ссылки внутри выпадающего списка */
.dropdown-content a {
    color: #fff;
    background-color: rgba(255, 215, 165, 0.8);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Изменение цвета ссылок при наведении */
.dropdown-content a:hover {
    background-color: rgba(255, 200, 140, 0.9);
}

/* Показываем выпадающее меню при наведении на кнопку */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Изменение цвета кнопки при наведении (опционально) */
.dropdown:hover .dropbtn {
    background-color: #ffa500;
}


