/* FAQ */
    .faq-section {
        background-color: #ffffff;
        padding: 60px 20px;
        font-family: Arial, sans-serif;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .faq-title {
        font-size: 25px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 10px 0;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .faq-underline {
        width: 300px;
        height: 4px;
        background: linear-gradient(to right, #3a5fb0  0%, #3a5fb0  50%, #1f3342 50%, #1f3342 100%);
        margin: 0 auto;
    }

    .faq-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .faq-item {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 22px 30px;
        cursor: pointer;
        background-color: #ffffff;
        transition: background-color 0.3s ease;
    }

    .faq-question:hover {
        background-color: #f9f9f9;
    }

    .faq-question-text {
        font-size: 17px;
        color: #333;
        font-weight: 400;
        margin: 0;
        padding-right: 20px;
        flex: 1;
    }

    .faq-icon {
        font-size: 24px;
        color: #666;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        background-color: #fafafa;
    }

    .faq-answer-content {
        padding: 0 30px;
        color: #555;
        font-size: 15px;
        line-height: 1.7;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 20px 0;
    }

    @media (max-width: 768px) {
        .faq-section {
            padding: 50px 15px;
        }

        .faq-title {
            font-size: 26px;
        }

        .faq-underline {
            width: 250px;
        }

        .faq-question {
            padding: 18px 20px;
        }

        .faq-question-text {
            font-size: 16px;
            padding-right: 15px;
        }

        .faq-answer-content {
            padding: 0 20px;
            font-size: 14px;
        }

        .faq-icon {
            font-size: 22px;
        }
    }

    @media (max-width: 480px) {
        .faq-section {
            padding: 40px 10px;
        }

        .faq-title {
            font-size: 22px;
        }

        .faq-underline {
            width: 200px;
            height: 3px;
        }

        .faq-question {
            padding: 16px 18px;
        }

        .faq-question-text {
            font-size: 15px;
        }

        .faq-answer-content {
            padding: 0 18px;
            font-size: 13px;
        }

        .faq-item {
            margin-bottom: 12px;
        }
    }
/* ENDING OF FAQ */
