/* Container của FAQ */
.faqs-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Roboto', sans-serif;
}

/* Mỗi mục FAQ */
.faqs-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 16px;
    transition: all 0.3s ease-in-out;
}

/* Câu hỏi */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

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

/* Dấu + hoặc - */
.toggle-btn {
    font-size: 20px;
    color: #6200ea;
    font-weight: bold;
    transition: transform 0.2s;
}

/* Câu trả lời */
.faq-answer {
    padding: 16px 24px;
    display: none;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    background-color: #fafafa;
    border-radius: 0 0 12px 12px;
}

