/* Sekcja FAQ */
.faq-section {
    font-family: "Inter", sans-serif;
    background-color: #1B1A17;
    color: #ffffff;
    padding: 3rem 1rem;
}
.faq-section.v2 {
    background-color: #FFFFFF;
    color: #1B1A17;
}
.faq-title {
    margin-bottom: 2rem;
    text-align:center;
}

.faq-item {
    border-bottom: 1px solid #D3BA7A;
    padding: 1rem 0;
    max-width:800px;
     width: 100%;
    text-align: left; 
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #D3BA7A;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 0;
    margin: 0;
}
@media (max-width: 767px) {
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;  
    }
}
.faq-icon {
    font-size: 1.2rem;
    color: #D3BA7A;
    transition: transform 0.3s ease;
    border: 1px solid #D3BA7A;
    border-radius:50px;
    padding-right:10px;
    padding-left:10px;
    padding-bottom:3px;
}

.faq-answer {
    display: none;
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: hsla(0, 0%, 100%, 0.8);
}
.v2 .faq-answer { 
    color: #1B1A17;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question .faq-icon {
    content: "-";
}
.faq-item--container {
 display: flex;
 flex-direction: column;
 align-items: center;
}