/* FAQ Section Styles */
.faq-section {
    position: relative;
    background-color: #f8f9fa;
}

.accordion-box {
    position: relative;
}

.accordion-box .accordion {
    position: relative;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.accordion-box .accordion:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-box .acc-btn {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    color: #df0303;
    font-weight: 600;
    cursor: pointer;
    padding: 20px 60px 20px 25px;
    transition: all 300ms ease;
}

.accordion-box .acc-btn:hover {
    color: #b30202;
}

.accordion-box .acc-btn.active {
    color: #df0303;
}

.accordion-box .icon-outer {
    position: absolute;
    right: 25px;
    top: 50%;
    width: 34px;
    height: 34px;
    margin-top: -17px;
    border-radius: 50%;
    background-color: #df0303;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
}

.accordion-box .icon-outer .icon {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    transition: all 300ms ease;
}

.accordion-box .acc-btn.active .icon-outer .icon {
    transform: rotate(180deg);
}

.accordion-box .acc-content {
    position: relative;
    display: none;
}

.accordion-box .acc-content.current {
    display: block;
}

.accordion-box .content {
    position: relative;
    padding: 0 25px 25px;
    border-top: 1px solid #e5e5e5;
}

.accordion-box .content .text {
    position: relative;
    font-size: 15px;
    line-height: 28px;
    color: #666666;
    margin-top: 15px;
}

/* Responsive Styles */
@media only screen and (max-width: 767px) {
    .faq-section {
        padding: 50px 0 !important;
    }

    .accordion-box .acc-btn {
        font-size: 16px;
        padding: 15px 50px 15px 20px;
    }

    .accordion-box .icon-outer {
        right: 15px;
    }

    .accordion-box .content {
        padding: 0 20px 20px;
    }

    .accordion-box .content .text {
        font-size: 14px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 575px) {
    .accordion-box .acc-btn {
        font-size: 15px;
        padding: 12px 45px 12px 15px;
    }

    .accordion-box .content {
        padding: 0 15px 15px;
    }
}