.faq-content {
    max-width: 900px;
    margin: 100px auto 0;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.back-button{
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
    display: flex;
    align-items: center;
    justify-content: left;
    color: #64748b;
    background: none;
    border: none;
    cursor: pointer;
    box-shadow: none;
    text-decoration: none;
}

.back-button:hover{
    color: #0f172a;
    transform: translateY(-1px);
    background: none;
    box-shadow: none;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.faq-section {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    /* border-bottom: 2px solid var(--border); */
}

.faq-item {
    margin-bottom: 2.5rem;
}

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

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-answer {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .main-content {
        padding: 2rem 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .faq-section {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}