.faq-container-f8ba599b {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.faq-item-f8ba599b {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header-f8ba599b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
    gap: 16px;
}

.faq-question-f8ba599b {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.faq-tag-f8ba599b {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-icon-f8ba599b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-icon-f8ba599b svg {
    width: 20px;
    height: 20px;
}

.faq-header-f8ba599b[aria-expanded="true"] .faq-icon-f8ba599b {
    transform: rotate(180deg);
}

.faq-content-f8ba599b {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-header-f8ba599b[aria-expanded="true"] + .faq-content-f8ba599b {
    max-height: 500px; /* High enough to contain content, handled elegantly */
}

.faq-answer-f8ba599b {
    padding: 0 20px 20px 20px;
    line-height: 1.6;
}
