.faq-wrapper-2e05c6eb {
    width: 100%;
}

.faq-item-2e05c6eb {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item-2e05c6eb + .faq-item-2e05c6eb {
    margin-top: 12px;
}

.faq-item-2e05c6eb:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question-2e05c6eb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a2e;
    user-select: none;
    transition: background-color 0.2s ease;
    gap: 12px;
}

.faq-question-2e05c6eb:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question-2e05c6eb::after {
    content: '+';
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-item-2e05c6eb.faq-active-2e05c6eb .faq-question-2e05c6eb::after {
    content: '\2212';
    transform: rotate(180deg);
}

.faq-answer-2e05c6eb {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item-2e05c6eb.faq-active-2e05c6eb .faq-answer-2e05c6eb {
    max-height: 500px;
    padding: 0 20px 16px;
}
