/* ============================================
   FAQ PAGE - faqs.css
   ============================================ */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    font-weight: 500;
    color: rgb(90, 20, 10);
    transition: background-color 0.3s ease;
}

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

.faq-question i {
    color: #be1b2c;
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    background-color: #ffffff;
}

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

.faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: rgb(10, 0, 0);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        font-size: 14px;
        padding: 15px;
    }
}
