﻿.faq-section {
    padding: 40px 20px;
    background-color: #fdf4ea;
    display: flex;
    justify-content: center;
}

.faq-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
}

.faq-questions-panel {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

    .faq-questions-panel ul {
        list-style: none;
        padding: 0;
    }

        .faq-questions-panel ul li {
            padding: 10px 15px;
            margin-bottom: 10px;
            cursor: pointer;
            background-color: #fff7e6;
            border-radius: 8px;
            transition: background-color 0.3s ease-in-out;
        }

            .faq-questions-panel ul li:hover {
                background-color: #ffb800;
                color: white;
            }

.faq-answers-panel {
    flex: 2;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-video {
    display: none;
}

    .faq-video video {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .faq-video.active {
        display: block;
    }
