
.FAQ {
    margin-top: 2rem; /* 140px */
}

.FAQ-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5.5rem; /* 155px */
    justify-content: flex-start;
    flex-wrap: nowrap;
}
.FAQ-title-wrap p{
    font-family: var(--font-family);
font-weight: 300;
font-size: 1.6rem;
color: #4d4d4d;
line-height: 1rem;
}
.FAQ-title-wrap{
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}


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



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

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

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

/* Добавляем иконку "+" перед заголовком */
.accordion-header::after {
    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::after {
    transform: rotate(-45deg);
    color: #fff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    
    padding: 0 0.9375rem; /* 15px */
    transition: max-height 0.3s ease-in-out;
    color: #fff;
}
.accordion-content p{
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 150%;
}

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