
.FAQ {
    padding-top: 11rem;
}

.FAQ-wrapper {
    display: flex;
    flex-direction: column;
    gap: 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: 500;
    font-size: 1.6rem; /* 25px */
    line-height: 120%;
   color: #8c9db1;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding-right: 1rem;
    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: #8c9db1;
    font-family: var(--content-font);
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* При раскрытии вопроса иконка меняет цвет и вращается */
.accordion-item.active .accordion-header::after {
    content: '–';
    color: #8c9db1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 0; /* 15px */
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    color: #000;
}
.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 0rem; /* 15px */
}