.faq-block {

    border-radius: 8px;
    padding: 1rem;
}

/* .faq-item + .faq-item {
    border-top: 1px solid #ddd;
    margin-top: 1rem;
    padding-top: 1rem;
} */
.faq-item {
    border-top: 1px solid #ddd;
    padding: 1rem;
}
.faq-item.active{
    border-radius: 10px;
    border: 1px solid #f3113c;
    background: #f8f9fc;
}

.faq-item.active .faq-question {
    margin-bottom: 15px;
}
.faq-item.active + .faq-item{
    border:none
}
.faq-question {
    margin: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    /* padding: 10px; */
    /* margin-bottom: 15px; */
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 0;
    position: relative;
}

.faq-toggle::after {
    content: '+';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
    font-size: 24px;
    color:#f3113c;
}

.faq-toggle[aria-expanded="true"]::after {
    content: '-';
}

.faq-answer {
    overflow: hidden;
    transition: max-height 0.3s ease;
    /* padding: 10px; */
}

.faq-answer[hidden] {
    max-height: 0;
}

.faq-answer:not([hidden]) {
    max-height: 1000px; /* lub dopasuj */
}
