
.brand-faqs__list {
    margin: 30px 0;
    max-width: 1200px; 
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 1200px) {
    .brand-faqs__list {
        padding: 0 20px;
    }
}
.faq-item {
    width: 100%;
    max-width: calc(100%);
    flex: 0 0 100%;
}
@media (min-width: 768px) {
.faq-item {
    width: 100%;
    max-width: calc(50% - 15px);
    flex: 0 0 50%;
}
}
.faq-item.active-faq {
    width: 100%;
    max-width: calc(100%);
    flex: 0 0 100%;
}

.faq-item__question {
    background-color: #f5f5f5;
    color: #000;
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item__question:hover,
.faq-item__question.active {
    background-color: #000;
    color: #fff;
}

.faq-icon {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

.faq-icon.active-icon {
    display: none;
}

.faq-item__question:hover .active-icon,
.faq-item__question.active .active-icon {
    display: block;
}

.faq-item__question:hover .default-icon,
.faq-item__question.active .default-icon {
    display: none;
}

.faq-item__question span {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
}

.question-arrow {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.faq-item__question:hover .question-arrow,
.faq-item__question.active .question-arrow {
    transform: rotate(180deg);
}

.faq-item__answer {
    background-color: #fff;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item__answer.active {
    padding: 20px;
    max-height: 1000px;
    border: 1px solid #e5e5e5;
    border-top: none;
}

