/* --- Основні стилі --- */
        .yuston-page-wrapper {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            box-sizing: border-box;
        }
        .yuston-page-wrapper * { box-sizing: border-box; }
        .center-text { text-align: center; }
        
        /* Кольори */
        .text-blue { color: #284B59; }
        .text-red { color: var(--accent-color); }
        .bg-gray { background-color: rgba(188,187,192,0.25); }
        .bg-light { background-color: #faf7f7; }

        /* Секції */
        .yuston-section { padding: 10px 0; }
        
        /* Типографіка */
        .yuston-title { font-size: 2em; margin-bottom: 10px; margin-top: 0; }
        .yuston-subtitle { font-size: 1.2em; font-weight: normal; margin-bottom: 30px; max-width: 800px; margin-left: auto; margin-right: auto; }
        
        /* Відео */
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            overflow: hidden;
            max-width: 840px;
            margin: 0 auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

        /* --- Стилі для Іконок --- */
        .icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #eef2f3; /* Світлий фон кружечка */
            color: #284B59; /* Колір іконки */
            border-radius: 50%;
            font-size: 24px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        /* Ефект при наведенні на іконку */
        .service-item:hover .icon-circle,
        .advantage-card:hover .icon-circle {
            background-color: #284B59;
            color: #fff;
        }
        /* Великі іконки для переваг */
        .icon-large {
            width: 70px;
            height: 70px;
            font-size: 30px;
            color: var(--accent-color);
            background-color: #fff9f9;
        }
        .advantage-card:hover .icon-large {
            background-color: var(--accent-color);
            color: #fff;
        }

        /* --- Сітка послуг (Flexbox) --- */
        .services-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            margin-top: 40px;
            text-align: left;
        }
        .service-item {
            display: flex;
            align-items: flex-start;
            flex-basis: 45%;
            min-width: 300px;
        }
        .service-icon-wrapper { margin-right: 20px; flex-shrink: 0; }
        .service-content h3 { margin-top: 0; margin-bottom: 10px; }
        .service-content ul { padding-left: 20px; margin: 0; }

        /* --- Сітка переваг (Grid) --- */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .advantage-card {
            background: #fff;
            padding: 30px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }
        .advantage-card:hover { transform: translateY(-7px); }
        .advantage-title { font-size: 1.2em; margin-bottom: 10px; font-weight: bold; margin-top: 15px; }

        /* --- Соцмережі --- */
        .social-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        .social-btn {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            color: #fff;
            font-weight: bold;
            transition: opacity 0.3s;
        }
        .social-btn:hover { opacity: 0.9; }
        .social-btn i { margin-right: 10px; font-size: 1.2em; }
        
        /* Брендові кольори кнопок */
        .btn-fb { background-color: #3b5998; }
        .btn-insta { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
        .btn-yt { background-color: #FF0000; }

        @media (max-width: 768px) {
            .service-item { flex-basis: 100%; }
            .yuston-title { font-size: 1.6em; }
        }

        /* --- Секція Про нас: Розбивка на 2 колонки --- */

/* Контейнер для розділення */
.split-layout {
    display: flex;
    flex-direction: column; /* За замовчуванням (мобільний) - у стовпчик */
    gap: 30px;
    align-items: center;
}

/* Вирівнювання тексту на мобільному - по центру */
.about-text-content {
    text-align: center;
    width: 100%;
}

/* Відео на мобільному - на всю ширину */
.about-video-container {
    width: 100%;
    max-width: 600px; /* Обмеження ширини відео, щоб не було гігантським */
}

/* Адаптивне відео (щоб зберігало пропорції) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* Тінь для краси */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- ВЕЛИКІ ЕКРАНИ (ПК/Ноутбуки) --- */
@media (min-width: 992px) {
    .split-layout {
        flex-direction: row; /* Ставимо в рядок */
        justify-content: space-between; /* Розводимо по краях */
        text-align: left; /* Текст вирівнюємо вліво для читабельності */
    }

    .about-text-content {
        width: 48%; /* Текст займає майже половину */
        text-align: left; /* Важливо: зліва текст краще читається, коли він збоку */
        padding-right: 20px;
    }

    .about-video-container {
        width: 48%; /* Відео займає другу половину */
        margin: 0; /* Прибираємо відступи центрування */
    }

    /* Трохи збільшимо шрифт заголовка на великих екранах */
    .yuston-title {
        font-size: 2.5rem; 
        margin-bottom: 20px;
    }
}