/*<!-- Нові стилі -->*/

    body {
        font-family: 'Roboto', sans-serif;
        background-color: #e0e0e0; /* Сірий фон */
        color: #333;
        margin: 0;
        padding: 0;
        background: url('ks16.webp') no-repeat center center fixed;
        background-size: cover;
    }
    .wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.8); /* Щоб текст був видимий на фоні */
        border-radius: 8px;
    }
    .header {
        background-color: #FF6A00; /* Помаранчевий */
        color: #fff;
        padding: 20px;
        text-align: center;
        border-bottom: 5px solid #E55A00;
    }
    .menu {
        text-align: center;
        padding: 10px 0;
        background-color: #E55A00; /* Помаранчевий */
    }
    .menu__item {
        display: inline-block;
        margin: 0 15px;
    }
    .menu__item a {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        text-transform: uppercase;
    }
    .menu__item a:hover {
        color: #FFC846;
    }
    .content {
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    h1, h2 {
        color: #333;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 15px;
    }
    p {
        line-height: 1.6;
        margin-bottom: 15px;
    }
    .button {
        display: inline-block;
        padding: 15px 25px;
        background-color: #FF6A00;
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        margin: 10px 0;
        text-align: center;
    }
    .button:hover {
        background-color: #E55A00;
    }
    .image-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .image-row img {
        width: 24%;
        border-radius: 8px;
        cursor: pointer;
    }
    .modal {
        display: none; /* Модальне вікно */
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
    }
    .modal-content {
        margin: 15% auto;
        display: block;
        width: 60%;
        max-width: 700px;
        border-radius: 8px;
    }
    .modal-content img {
        width: 100%;
        border-radius: 8px;
    }
    .close {
        position: absolute;
        top: 10px;
        right: 25px;
        color: #fff;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
    }
    footer {
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 10px 0;
        margin-top: 20px;
    }
    footer a {
        color: #FFC846;
        text-decoration: none;
    }
    footer a:hover {
        text-decoration: underline;
    }
