
.FAQ {

}

.FAQ-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5.5rem; /* 155px */
    justify-content: flex-start;
    flex-wrap: nowrap;
}


.FAQ-btn {
    display: none;
}
.FAQ-btn-mob{
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 7rem;
}

.FAQ-title-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.accordion {
    width: 100%; /* 567px */
    overflow: hidden;
}

.accordion-item {
    border-top: 0.0625rem solid #d6d6d6; /* 1px */
}

.accordion-header {
    width: 100%;
    background: none;
    padding: 2.9rem 0; /* 30px */
    border: none;
    text-align: left;
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 1.6rem; /* 25px */
    line-height: 120%;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    display: flex;
    gap: 3.4375rem; /* 55px */
    align-items: center;
    transition: background 0.3s ease-in-out;
    position: relative;
}

/* Добавляем иконку "+" перед заголовком */
.accordion-header::before {
    content: "+";
    font-size: 3rem; /* 24px */
    font-weight: 300;
    color: #fff;
    font-family: var(--content-font);
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* При раскрытии вопроса иконка меняет цвет и вращается */
.accordion-item.active .accordion-header::before {
    transform: rotate(-45deg);
    color: #fff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #000;
    padding: 0 0.9375rem; /* 15px */
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding-left: 4.8rem !important; /* 70px */
    color: #fff;
}
.accordion-content p{
    font-size: 1.6rem;
    font-weight: 300;
}

/* Когда открывается FAQ, появляется контент */
.accordion-item.active .accordion-content {
    max-height: fit-content; /* 150px */
    padding: 0 0.9375rem 2rem 0.9375rem; /* 15px */
    max-width: 33.4375rem; /* 487px */
}