.faq-item-54c20905 {
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question-54c20905 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    transition: background 0.3s ease;
}

.faq-question-54c20905:hover {
    background: #f8fafc;
}

.faq-icon-54c20905 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #64748b;
}

.faq-item-54c20905.active .faq-icon-54c20905 {
    transform: rotate(180deg);
}

.faq-answer-54c20905 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.faq-answer-inner-54c20905 {
    padding: 0 20px 20px;
    color: #475569;
    line-height: 1.6;
}

.faq-answer-inner-54c20905 p:last-child {
    margin-bottom: 0;
}