#faq{
    width: 100%;
    padding: 96px 111px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 64px;
}

.questions{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.questions > .card{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
    position: relative;
    gap: 32px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.questions > .card::before{
    padding: 1px;
    background: linear-gradient(195.57deg, #A9A8CD 0%, #141524 50%, #A9A8CD 100%);
}

.questions > .card > .question{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.questions > .card.open > .answer {
    display: block;
    width: 100%;
    color: #EAEBF1;
    padding: 16px;
}

.answer > p {
    font-family: Urbanist;
    font-size: 24px;
    font-weight: 500;
    line-height: 33.6px;
}


.questions > .card.open > .question > a {
    transform: rotate(90deg);
}

.questions > .card > .answer{
    display: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.questions > .card > .question > span{
    font-family: Urbanist;
    font-size: 28px;
    font-weight: 500;
    line-height: 33.6px;
    color: #FAFAFA;
}

.question > .card > a{
    width: 32px;
    height: 32px;
    border: none;
    outline: none;
    background: var(--body-bg);
    text-decoration: none;
}