main {
    padding-top: 100px;
}
.faq-section {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    font-family: var(--font-B), serif;
}

.faq-section h2 {
    font-size: 2em;
    font-weight: 500;
    margin-bottom: 24px;
    color: #433722;
    background: #fff;
    text-align: center;
}

/* Každá FAQ položka - mírné oddělení */
.faq-item {
    margin-bottom: 18px;
    padding-bottom: 14px;
}

/* FAQ otázka jako tlačítko - plné šířky, kurzor ruky */
.faq-question {
    background: #f4f1ea;
    color: #433722;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 8px;
    outline: none;
    transition: background 0.18s;
}
.faq-question:hover {
    background-color: #ed9745;
    color: white;
    outline: none;
}
.faq-question[aria-expanded="true"] {
    background: #f49c40;
    color: #fff;
}

/* Odpověď, schovaná/naskakující */
.faq-answer {
    background: #fff8ec;
    padding: 12px 18px;
    margin-top: 4px;
    border-radius: 0 0 8px 8px;
    border-top: 1px solid #ead9b7;
    color: #4c3c18;
    font-size: 1em;
}

/* Malá úprava, aby se odlišila */
.faq-answer p {
    margin: 0 0 12px 0;
}

/* Responsive: menší padding na mobilech */
@media (max-width: 600px) {
    main {
        padding: 16px 12px;
    }
    .faq-question {
        font-size: 1em;
        padding: 12px 14px;
    }
    .faq-answer {
        padding: 8px 14px 12px 14px;
    }
}