/* Style pro nejcastější otázky do popisu */
.faq-wrapper { 
    margin: 40px 0; 
    clear: both;
    width: 100%;
}

.faq-wrapper h2 {
    margin-bottom: 25px;
    color: #566467;
    font-size: 24px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #deeaec;
    border-radius: 0px;
    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: #566467;
    background: #fafafa;
    transition: background 0.2s ease;
}

.faq-otazka:hover { background: #f0f0f0; }

.faq-otazka span:first-child {
    flex: 1;
    padding-right: 15px;
}

.faq-sipka {
    transition: transform 0.3s ease;
    font-size: 20px;
    color: #666;
    flex-shrink: 0;
}

.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;
}

.faq-odpoved.zobrazeno {
    max-height: 600px;
    padding: 15px 20px 20px 20px;
}

.faq-odpoved p {
    margin: 0;
    line-height: 1.7;
    color: #566467;
}

@media (max-width: 768px) {
    .faq-otazka { padding: 15px; font-size: 15px; }
    .faq-odpoved.zobrazeno { padding: 12px 15px 15px 15px; }
}