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

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

.gc-help-container {
    max-width: 1100px;
    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-help-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #F4F6FA;
    border: 1px solid #E7E9EF;
    border-radius: 12px;
    padding: 14px 20px;
    margin: 24px auto 56px;
    max-width: 640px;
    box-shadow: 0 16px 32px rgba(25, 44, 77, 0.12);
    background-color: #FFFFFF;
    position: relative;
    z-index: 3;
}

.gc-help-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.gc-help-search button {
    background-color: var(--navy, #171B2E);
    color: #FFFFFF;
    border: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.gc-help-search button:hover {
    background-color: color-mix(in srgb, var(--navy, #171B2E) 70%, black);
}

.gc-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.gc-help-card {
    display: block;
    border: 1px solid #E7E9EF;
    border-radius: 12px;
    padding: 26px 24px;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.gc-help-card:hover {
    box-shadow: 0 16px 32px rgba(25, 44, 77, 0.1);
    transform: translateY(-4px);
}

.gc-help-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E9EEF7;
    border-radius: 10px;
    margin-bottom: 18px;
    color: var(--navy, #171B2E);
}

.gc-help-card h3 {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--navy, #171B2E);
    margin: 0 0 8px;
}

.gc-help-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #6B7280;
    margin: 0 0 14px;
}

.gc-help-card span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold, #5B4CE0);
}

.gc-help-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #F4F6FA;
    border-radius: 14px;
    padding: 32px 36px;
    flex-wrap: wrap;
}

.gc-help-cta h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy, #171B2E);
    margin: 0 0 6px;
}

.gc-help-cta p {
    font-size: 13.5px;
    color: #6B7280;
    margin: 0;
}

.gc-help-cta-btn {
    background-color: var(--gold, #5B4CE0);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.gc-help-cta-btn:hover {
    background-color: color-mix(in srgb, var(--gold, #5B4CE0) 75%, black);
}

.gc-help-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.55);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.gc-help-modal-overlay.active {
    display: flex;
}

.gc-help-modal {
    background-color: #FFFFFF;
    border-radius: 14px;
    width: 90%;
    max-width: 480px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 28px 28px 32px;
    font-family: 'Poppins', sans-serif;
}

.gc-help-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.gc-help-modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy, #171B2E);
    margin: 0;
}

.gc-help-modal-close {
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: #6B7280;
    cursor: pointer;
}

.gc-help-modal-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gc-help-modal-list li {
    font-size: 14px;
    color: #374151;
    padding: 12px 0;
    border-bottom: 1px solid #E7E9EF;
    cursor: pointer;
}

.gc-help-modal-list li:hover {
    color: var(--gold, #5B4CE0);
}

.gc-help-modal-list li:last-child {
    border-bottom: none;
}

@media (max-width: 900px) {
    .gc-help-grid {
        grid-template-columns: 1fr;
    }
    .gc-help-search {
        margin-top: 0;
    }
}

.gc-help-modal-list li a {
    color: inherit;
    text-decoration: none;
    display: block;
}