/* Container for the FAQ page content */
.faq-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* Back button aligned with the page header */
.back-button {
    background: none;
    border: none;
    color: var(--primary, #0078d4);
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1rem;
    padding: 0;
    display: flex;
    align-items: center;
}

.back-button:hover {
    text-decoration: underline;
}

/* Header and logo styling */
.faq-header .logo {
    width: 120px;
    margin-bottom: 1rem;
}

.faq-header h1 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

/* FAQ list layout */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    color: var(--primary, #0078d4);
    margin-bottom: 0.5rem;
}

