body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

main{
    margin-top: 5%;
}
.faq-section {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden; /* Ukrywa treść odpowiedzi */
}

.faq-question {
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1em;
}

.faq-answer {
    padding: 15px;
    display: none; /* Domyślnie ukryta */
    background-color: #fff;
    border-top: 1px solid #eee;
}

.faq-section.open .faq-answer {
    display: block; /* Wyświetla odpowiedź po kliknięciu */
}

.faq-question::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 1.5em;
    font-weight: bold;
    color: #555;
}

.faq-section.open .faq-question::after {
    content: '-';
}

.przerwa{
    height: 10vh; 
    width: 100%; 
}

