/* Globální styly pro FAQ sekci */
.faq-wrapper { margin: 40px 0; }
.faq-wrapper h2 { margin-bottom: 25px; color: #333; font-size: 24px; }
.faq-item { background: #ffffff; border: 1px solid #e0e0e0; border-radius: 6px; margin-bottom: 15px; overflow: hidden; transition: box-shadow 0.2s ease; }
.faq-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.faq-otazka { padding: 18px 20px; cursor: pointer; user-select: none; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #333; background: #fafafa; transition: background 0.2s ease; }
.faq-otazka:hover { background: #f0f0f0; }
.faq-sipka { transition: transform 0.3s ease; font-size: 18px; color: #666; }
.faq-sipka.otevreno { transform: rotate(180deg); }
.faq-odpoved { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; background: #fff; }
.faq-odpoved.zobrazeno { max-height: 800px; padding: 15px 20px 20px 20px; border-top: 1px solid #eee; }
.faq-odpoved p { margin: 0 0 10px 0; line-height: 1.6; color: #444; }

@media (max-width: 768px) {
    .faq-otazka { padding: 15px; font-size: 15px; }
}