.faq-wrapper-d0b471b6 {
    font-family: inherit;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Search Wrapper */
.faq-search-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.faq-search-input {
    width: 100%;
    padding: 16px 50px 16px 48px;
    font-size: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.faq-search-input:focus {
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.faq-search-icon {
    position: absolute;
    left: 16px;
    display: flex;
    align-items: center;
    color: #64748b;
    pointer-events: none;
}

.faq-search-clear {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.faq-search-clear:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}

/* Category Filters */
.faq-categories-wrapper {
    width: 100%;
    margin-bottom: 24px;
    overflow: hidden;
}

.faq-categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: -8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.faq-categories-scroll::-webkit-scrollbar {
    display: none;
}

.faq-cat-filter {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    background-color: #f8fafc;
    color: #334155;
    cursor: pointer;
    transition: all 0.25s ease;
}

.faq-cat-filter:hover {
    background-color: #f1f5f9;
}

.faq-cat-filter.active {
    background-color: #0284c7;
    border-color: #0284c7;
    color: #ffffff;
}

/* Result Counter */
.faq-results-counter {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
    font-weight: 500;
}

/* Popular Questions */
.faq-popular-section {
    margin-bottom: 32px;
}

.faq-popular-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #0f172a;
}

.faq-popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.faq-popular-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.faq-popular-card:hover {
    transform: translateY(-2px);
    border-color: #0284c7;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
}

.faq-popular-card-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 8px;
}

.faq-popular-card-text {
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    line-height: 1.4;
}

.faq-popular-chevron {
    color: #94a3b8;
    flex-shrink: 0;
    display: flex;
}

/* FAQ Accordion Cards */
.faq-card-d0b471b6 {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-card-d0b471b6:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.faq-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.faq-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-grow: 1;
}

.faq-card-icon {
    color: #0284c7;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-card-icon svg {
    width: 24px;
    height: 24px;
    fill: #0284c7;
}

.faq-header-text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

.faq-category-badge {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: #f1f5f9;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 4px;
}

.faq-chevron-icon {
    color: #64748b;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.faq-chevron-icon svg {
    transition: transform 0.25s ease;
}

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

.faq-accordion-body {
    transition: height 0.25s ease, opacity 0.25s ease;
}

.faq-accordion-body-inner {
    padding: 0 24px 20px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

.faq-accordion-body-inner p:first-child {
    margin-top: 0;
}

.faq-accordion-body-inner p:last-child {
    margin-bottom: 0;
}

/* Highlighting */
.faq-highlight {
    background-color: rgba(2, 132, 199, 0.15);
    color: #0284c7;
    border-radius: 2px;
    padding: 0 2px;
}

/* Empty State */
.faq-empty-state {
    text-align: center;
    padding: 48px 24px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    box-sizing: border-box;
}

.faq-empty-icon {
    color: #94a3b8;
    margin-bottom: 16px;
}

.faq-empty-heading {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.faq-empty-text {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 20px 0;
}

.faq-btn-primary {
    background-color: #0284c7;
    color: #ffffff;
    border: 1px solid #0284c7;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.faq-btn-primary:hover {
    background-color: #0369a1;
    border-color: #0369a1;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-popular-grid {
        grid-template-columns: 1fr;
    }
    .faq-accordion-header {
        padding: 16px;
    }
    .faq-accordion-body-inner {
        padding: 0 16px 16px 16px;
    }
}
