/* Ogólny kontener FAQ */
#faq {
    margin: 50px;
    background-image: url('https://images.pexels.com/photos/983200/pexels-photo-983200.jpeg'); /* dodaj własną ścieżkę */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 20px;
}

/* Nagłówki w sekcji FAQ */
#faq h2,
#faqContainer h3 {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

/* Stylowanie elementów pytania (np. klikane pytania) */
#faqList h4 {
    cursor: pointer;
    color: #f1f1f1;
    transition: color 0.3s ease;
}

#faqList h4:hover {
    color: #ff0000;
}

/* Pojedynczy element FAQ */
.faq-item {
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 20px;
    background-color: rgba(54, 54, 54, 0.9);
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(70, 70, 70, 0.95);
}

/* Linki w FAQ */
#faq a {
    padding: 5px;
    display: block;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

#faq a:hover {
    color: #ff0000;
}

/* Lista FAQ */
#faq ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Pojedynczy element listy */
#faq li {
    padding: 10px;
    background-color: rgb(47, 48, 48);
    border-radius: 15px;
    margin: 8px 0;
    transition: transform 0.3s ease;
}

/* Efekt najechania na element listy */
#faq li:hover {
    transform: scale(1.05);
}
