.faq-container {
    margin: 20px 0;
    font-family: Arial, sans-serif;
    contain: content;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-pytanie {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-pytanie:hover {
    opacity: 0.9;
}

.faq-rozwin-ikona {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-odpowiedz {
    padding: 0 15px;
    background-color: #fff;
    display: none; 
    overflow: hidden;
    transition: none !important; 
}



.faq-odpowiedz.otwarte {
    padding: 15px;
    display: block;
}