.faq-d55eac74-wrapper {
    font-family: inherit;
    max-width: 100%;
}
.faq-d55eac74-search-container {
    margin-bottom: 20px;
}
.faq-d55eac74-search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.faq-d55eac74-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.faq-d55eac74-tab {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}
.faq-d55eac74-tab:hover, .faq-d55eac74-tab.active {
    background: #ffffff;
    border-color: #3b82f6;
    color: #3b82f6;
}
.faq-d55eac74-accordion {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}
.faq-d55eac74-item {
    border-bottom: 1px solid #e2e8f0;
}
.faq-d55eac74-item:last-child {
    border-bottom: none;
}
.faq-d55eac74-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    user-select: none;
    transition: background-color 0.2s ease;
}
.faq-d55eac74-question:hover {
    background-color: #f8fafc;
}
.faq-d55eac74-question-text-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.faq-d55eac74-badge {
    background-color: #eff6ff;
    color: #3b82f6;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}
.faq-d55eac74-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: #ffffff;
}
.faq-d55eac74-item.active .faq-d55eac74-answer {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}
.faq-d55eac74-answer-content {
    padding: 16px 20px;
    color: #4b5563;
    line-height: 1.6;
}
.faq-d55eac74-icon {
    font-size: 18px;
    transition: transform 0.2s ease;
}
.faq-d55eac74-item.active .faq-d55eac74-icon {
    transform: rotate(45deg);
}
