.faq-section {
    padding-top: 50px !important;
    padding-bottom: 40px !important;
}

.faq-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(92, 92, 92, 0.165);
    overflow: hidden;
    cursor: pointer;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.faq-item:hover {
    border-color: rgba(63, 81, 181, 0.2);
    box-shadow: 0 4px 20px rgba(63, 81, 181, 0.07);
}

.faq-item.open {
    border-color: rgba(63, 81, 181, 0.25);
    box-shadow: 0 4px 24px rgba(63, 81, 181, 0.1);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    font-family: "Sora", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    gap: 16px;
}

.faq-chevron {
    width: 18px;
    height: 18px;
    color: var(--blue);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.7;
    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 22px 18px;
}

.faq-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 28px;
}

.faq-tab {
    padding: 8px 22px;
    border-radius: 999px;
    border: 1px solid rgba(63, 81, 181, 0.25);
    background: transparent;
    font-family: "Sora", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
}

.faq-tab:hover {
    border-color: rgba(63, 81, 181, 0.5);
    color: var(--text);
}

.faq-tab.active {
    background: #3f51b5;
    color: #fff;
    border-color: #3f51b5;
}