body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #334155;
}

.page-banner {
    padding: 80px 0;
    background: var(--theme-gradient);
}

.faq-container {
    padding: 60px 0 100px;
}

/* Category Filter Chips */
.faq-filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-filter-btn {
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #475569;
    font-size: 14.5px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-filter-btn:hover {
    color: var(--theme-primary);
    border-color: var(--theme-secondary);
}

.faq-filter-btn.active {
    background-color: var(--theme-primary);
    color: #ffffff !important;
    border-color: var(--theme-secondary);
    box-shadow: var(--theme-shadow);
}

/* Search bar styling */
.faq-search-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    padding: 25px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-search-wrapper {
    position: relative;
}

.faq-search-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
}

.faq-search-control {
    height: 52px !important;
    padding-left: 48px !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc !important;
    font-size: 15px;
    color: #334155;
    transition: all 0.3s ease;
    width: 100%;
}

.faq-search-control:focus {
    border-color: var(--theme-secondary) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px var(--theme-mint-light) !important;
    outline: none;
}

/* Premium Accordions */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.faq-item:hover {
    border-color: var(--theme-secondary);
    box-shadow: 0 6px 20px rgba(11, 92, 59, 0.06);
}

.faq-item.active {
    border-color: var(--theme-secondary);
    box-shadow: var(--theme-shadow-hover);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    border: none;
    background: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--theme-primary);
}

.faq-icon-box {
    color: #94a3b8;
    font-size: 14px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon-box {
    transform: rotate(180deg);
    color: var(--theme-primary);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fafbfc;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-panel {
    border-color: #f1f5f9;
}

.faq-content {
    padding: 22px 24px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
}

.faq-content p {
    margin: 0 0 15px;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

/* Empty State search */
.faq-empty-state {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
    display: none;
}

.faq-empty-state i {
    font-size: 40px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.faq-empty-state p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}
