.gc-faq * {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.gc-faq {
    background-color: #FFFFFF;
    padding: 56px 32px 90px;
}

.gc-faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.gc-page-title {
    margin-bottom: 40px;
}

.gc-page-title h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--navy, #171B2E);
    margin: 0 0 10px;
}

.gc-page-title p {
    font-size: 14.5px;
    color: #6B7280;
    line-height: 1.7;
    max-width: 640px;
    margin: 0;
}

.gc-faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.gc-faq-tab {
    background-color: #F4F6FA;
    border: 1px solid #E7E9EF;
    color: #4B5568;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gc-faq-tab:hover {
    background-color: #E9EEF7;
}

.gc-faq-tab.is-active {
    background-color: var(--navy, #171B2E);
    border-color: var(--navy, #171B2E);
    color: #FFFFFF;
}

.gc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gc-faq-item {
    border: 1px solid #E7E9EF;
    border-radius: 12px;
    overflow: hidden;
}

.gc-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy, #171B2E);
    padding: 18px 22px;
    cursor: pointer;
}

.gc-faq-caret {
    flex-shrink: 0;
    transition: transform 0.2s ease;
    color: var(--navy, #171B2E);
}

.gc-faq-item.is-open .gc-faq-caret {
    transform: rotate(180deg);
}

.gc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding: 0 22px;
}

.gc-faq-item.is-open .gc-faq-answer {
    max-height: 300px;
    padding: 0 22px 20px;
}

.gc-faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: #6B7280;
    margin: 0;
}