/* FAQ Section */
/* Accordion */
.accordion-cat {
    /* max-width: 1000px; */

    .faq-section {
        padding: 60px 0;
        background-color: #fff;
    }

    .faq-tabs {
        display: flex;
        gap: 4px;
        margin-bottom: 40px;
        border-bottom: 2px solid #e0e0e0;
    }

    .tab-btn {
        padding: 14px 28px;
        background-color: transparent;
        border: none;
        border-bottom: 3px solid transparent;
        cursor: pointer;
        font-size: 15px;
        color: #666;
        transition: all 0.3s;
        position: relative;
        top: 2px;
    }

    .tab-btn.active {
        color: #2C1810;
        border-bottom-color: #6B4C4C;
        font-weight: 600;
    }

    .tab-btn:hover {
        color: #2C1810;
    }

    /* FAQ Tab Content */
    .faq-tab-content {
        display: none;
    }

    .faq-tab-content.active {
        display: block;
    }



    .accordion-item {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 16px;
        overflow: hidden;
    }

    .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .accordion-header:hover {
        background-color: #f9f9f9;
    }

    .accordion-header h3 {
        font-size: 16px;
        color: #2C1810;
        font-weight: 500;
    }

    .accordion-icon {
        width: 32px;
        height: 32px;
        background-color: #f5f5f5;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        transition: all 0.3s;
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .accordion-item.active .accordion-content {
        max-height: 500px;
        padding: 0 24px 24px;
    }

    .accordion-item.active .accordion-icon {
        transform: rotate(45deg);
        background-color: #6B4C4C;
        color: #fff;
    }

    .accordion-content p {
        color: #555;
        line-height: 1.8;
        font-size: 15px;
    }

    /* Responsive Design for FAQ/Accordion */
    @media (max-width: 768px) {
        .faq-tabs {
            overflow-x: auto;
        }
    }

}