#fw-section-hero-0 {
--color-primary: #000000;
--color-primary-rgb: 0, 0, 0;
--color-background: #ffffff;
--color-background-rgb: 255, 255, 255;
--color-on-primary: #ffffff;
--color-on-primary-rgb: 255, 255, 255;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-product-image-background: #ffffff;
--color-background-brightness: 255;
background-color: var(--color-background);
color: var(--color-on-background);

}






#fw-section-custom-html-b4465a3b-4097-403b-880d-8198f859db2b {

/* FAQ Container */
.faq-container {
    max-width: 800px; /* Độ rộng vừa phải cho dễ đọc */
    margin: 0 auto;
    padding: 20px;
}

/* Từng dòng câu hỏi */
.faq-item {
    border-bottom: 1px solid #e0e0e0; /* Đường gạch mờ tinh tế */
    margin-bottom: 10px;
}

/* Nút bấm câu hỏi */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: inherit; /* Lấy màu chữ có sẵn của web */
    font-family: inherit; /* Lấy font có sẵn của web */
    transition: color 0.3s ease;
}

.faq-question:hover {
    opacity: 0.7; /* Hover vào mờ nhẹ tí cho sang */
}

/* Icon cộng trừ */
.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* Phần trả lời (Mặc định ẩn) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    opacity: 0.8; /* Màu chữ nhạt hơn tiêu đề chút */
}

.faq-answer p {
    margin: 0;
    padding-bottom: 20px;
    line-height: 1.6;
}

/* Class active khi bấm vào (JS sẽ thêm cái này) */
.faq-item.active .faq-answer {
    max-height: 200px; /* Đủ chỗ cho nội dung hiện ra */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Dấu + xoay thành dấu x */
}
}