.faq-item {
    background-color: #45454573;
    border-radius: 50px;
    border: 1px outset #ffffff6e;
    width: 100%;
    margin-left: auto;
    margin-right: auto;

    padding: 31px 104px 31px 54px;

    cursor: pointer;

    position: relative;

    box-shadow: 0px 4px 10px #45454566;
}

.faq-list{
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    max-width: 1016px;
    margin: 0 auto;
}

/* FAQ content */

/* FAQ question */

.faq-question {
    display: flex;
    align-items: center;
}

.faq-question-title {
    font-weight: 500;
    margin-bottom: 0;

    transition: color 0.4s ease-in-out;
}

.faq-item.open .faq-question-title {
    color: #FF7000;
}

/* FAQ answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    margin-top: 30px;
    opacity: 1;
}

.faq-answer-text {
    display: inline;
    font-weight: 400;
}

.faq-answer-item {
    list-style: inside;
}

/* FAQ open icon */

.faq-open {
/*    position: absolute;*/
    margin-right: 24px;
    font-size: clamp(1.33rem, 1.12rem + 0.86vw, 1.78rem);

    transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
}

.faq-item.open .faq-open {
    transform: rotate(135deg);
    color: #FF7000;
}