/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    #FAQ Page Animated Style
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.faq-page-area-animated {
    padding: 100px 0;
    background-color: #111;
}

.section-heading-animated .title {
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-heading-animated .text {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #ffffff;
}

.faq-wrapper-animated {
    margin-top: 60px;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.faq-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    cursor: pointer;
    background: #D61F26;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.faq-title .toggle-icon {
    font-size: 24px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    background-color: #fff;
}

.faq-content p {
    padding: 25px 0;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
    color: #555;
    border-top: 1px solid #eee;
}

.faq-item.active .faq-title .toggle-icon {
    transform: rotate(135deg);
}

.faq-item.active .faq-content {
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s ease;
}
