
    

        @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&display=swap');

  /*Обнуление*/ 
  *{ 
    padding: 0; 
    margin: 0; 
    border: 0; 
} 
*,*:before,*:after{ 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
} 
:focus,:active{outline: none;} 
a:focus,a:active{outline: none;} 
nav,footer,header,aside{display: block;} 
html,body{ 
    height: 100%; 
    width: 100%; 
    font-size: 100%; 
    line-height: 1,5; 
    font-size: 16px; 
    -ms-text-size-adjust: 100%; 
    -moz-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
     scroll-behavior: smooth !important; /* Ця властивість дозволяє браузеру виконувати плавний скрол */
    
  
} 
html, body {
  overflow-x: hidden; /* Запобігає горизонтальному скролу */
  overflow-y: auto; /* Дозволяє вертикальний скрол */
}
input,button,textarea{font-family:inherit;} 
input::-ms-clear{display: none;} 
button{cursor: pointer;} 
button::-moz-focus-inner {padding:0;border:0;} 
a, a:visited{text-decoration: none;} 
a:hover{text-decoration: none;} 
ol, ul {    padding: 0 20px;max-width: 700px;line-height: 1.5;}
ul li{list-style: none;} 
li {    padding: 3px 0;}
img{vertical-align: top;} 
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;} 
p {
    line-height: 1.3;
    margin: 0 0 10px 0;
}




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

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f9f9f9;
            color: #333;
        }

        /* Меню (як у твоєму лендінгу) */
        .navbar {
                background-color: #ffffff;
    border-bottom: 1px solid #d3d3d3;   
            padding: 10px 20px;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }

        a.nav-logo img {
    border: 2px solid #fff;
    max-height: 40px;
    border-radius: 50%;
}

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            color: #000;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: #00aaff;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: #000;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        @media screen and (max-width: 768px) {
            .burger {
                display: flex;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 60px;
                left: 0;
                background-color: #fff;
                padding: 20px 0;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                margin: 10px 0;
                text-align: center;
            }
        }

        
        /* Заголовок */
        .page-header {
            text-align: center;
            padding: 40px 20px 0;
            
        }

        .page-header h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        /* Контейнер відгуків — креативний inline-block хак для колонок */
        .reviews-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            column-count: 3;
    column-gap: 30px;
        }

       .review-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
    transition: transform 0.3s ease;
    width: -webkit-fill-available;
}

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

        /* Фото */
        .review-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #d1d1d1;
    object-fit: cover;
    margin-bottom: 15px;
}

        /* Текст */
        .review-text {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        h3 {
    font-size: larger;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 10px;
}
        /* Відео — фіксована висота, щоб не стрибало при завантаженні */
        .review-video-container {
            width: 100%;
            height: 300px;
            position: relative;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .review-video-poster {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            border-radius: 8px;
            position: absolute;
            top: 0;
            left: 0;
        }

        .review-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #ff0000;
        }

        .review-play-button::after {
            content: '▶';
        }

        .review-video-iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
            display: none;
            position: absolute;
            top: 0;
            left: 0;
        }

        .video-loaded .review-video-iframe {
            display: block;
        }

        .video-loaded .review-video-poster {
            display: none;
        }

        /* Адаптивність — змінюємо ширину колонок */
        @media (max-width: 1024px) {
            /* .review-item {} */

            .reviews-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    column-count: 2;
    column-gap: 30px;
}


        }

        @media (max-width: 768px) {
            .review-item {
                width: 100%; /* 1 колонка на мобільних */
            }

              .reviews-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    column-count: 1;
    column-gap: 30px;
}

            .review-video-container {
                height: 60vh; /* Адаптивна висота відео на мобільних */
            }
        }