/* ========================
           Секция "У вас есть вопросы?" (CTA Owl Section)
       ======================== */
    .cta-owl-section {
        /* Вставьте сюда путь к вашей цельной картинке (боке + стол + сова) */
        background: url('../../images/cta-bg.jpg') center center / cover no-repeat;
        padding: 6rem 0;
        position: relative;
        min-height: 500px;
        display: flex;
        align-items: center;
    }

    /* На случай, если картинка будет слишком светлой, можно раскомментировать этот оверлей */
    /*
    .cta-owl-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
        z-index: 1;
    }
    */

    .cta-content {
        position: relative;
        z-index: 2;
    }

    .cta-subtitle {
        color: #c79a5b; /* Золотисто-оранжевый цвет */
        font-size: clamp(1.8rem, 3vw, 2.2rem);
        font-weight: 700;
        margin-bottom: 1.2rem;
    }

    .cta-title {
        color: #ffffff;
        font-size: clamp(1.2rem, 2vw, 1.55rem);
        font-weight: 600;
        line-height: 1.45;
        margin-bottom: 2rem;
    }

    .btn-cta-owl {
        background-color: #b58d59; /* Цвет кнопки под макет */
        color: #ffffff;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 0.9rem 2rem;
        border-radius: 4px;
        border: none;
        transition: background-color 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .btn-cta-owl:hover {
        background-color: #9c784a;
        color: #ffffff;
    }

    /* Адаптив для планшетов и мобильных */
    @media (max-width: 991px) {
        .cta-owl-section {
            padding: 4rem 0;
            background-position: 70% center; /* Смещаем фон, чтобы сова оставалась в кадре */
        }
        .cta-content {
            background-color: rgba(0, 0, 0, 0.5); /* Затемняем фон под текстом на мобилках для читаемости */
            padding: 2rem;
            border-radius: 12px;
        }
    }

/* ========================
