.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.faq-question {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    user-select: none;
    display: flex; /* Použijeme flexbox pro zarovnání ikony a textu */
    align-items: center;
}
.faq-question h3 {
    margin: 0;
    flex-grow: 1;
}
.faq-toggle-icon {
    margin-right: 10px; /* Přesuneme mezeru na pravou stranu */
    color: #187834;
    font-size: 1em;
    width: 28px;
    height: 28px;
    border: 2px solid #187834;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}
.faq-answer {
    padding: 15px;
    line-height: 1.6;
    background-color: #f9f9f9;
}
.faq-answer p {
    margin: 0;
}
/* Skryje odpověď a nastaví animaci */
.faq-answer.hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding-top: 0;
    padding-bottom: 0;
}
/* Zobrazí odpověď */
.faq-answer.visible {
    max-height: 500px;
    transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}
/* Otočení ikonky, když je odpověď viditelná */
.faq-question.active .faq-toggle-icon i {
    transform: rotate(90deg); /* Otočíme jen ikonu uvnitř kolečka o 90 stupňů */
}
.pricelist.section-with-heading h3 {
    text-align: center;
    font-size: 1.5em; /* Odhadem */
    font-weight: 700;
    margin: 10px 0;
    color: darkolivegreen; /* Změní barvu textu na tmavou olivově zelenou */
}
.faq-container h4 {
    text-align: center;
    font-size: 0.85em; /* Můžeš zkusit jiné hodnoty, např. 2.5em */
    font-weight: 700;
    margin: 10px 0;
}