/**
 * faq.css — shared styling for the on-page FAQ sections.
 *
 * These rules already existed inline on chore-wheel; this file is the same
 * pattern extracted so the pages that were missing a visible FAQ can share it
 * rather than each carrying its own copy. Uses the existing custom properties
 * from styles.css so the FAQ inherits each page's palette.
 *
 * New file rather than an addition to styles.css on purpose: netlify.toml
 * serves /*.css with max-age=31536000, immutable and there is no build step or
 * content hashing, so an edit to styles.css would not reach returning visitors
 * for up to a year. A new filename has no cached copy to fight.
 */

.faq-section {
    margin: 2rem 0;
}

.faq-item {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    color: var(--dark-color);
}

.faq-item p {
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .faq-item {
        padding: 1.15rem;
    }

    .faq-item h3 {
        font-size: 1.05rem;
    }
}
