.faq{
    padding: 70px 0;
}


.faq-item{
    padding: 32px;
    border-radius: 20px;
    box-sizing: border-box;
    border: 1px solid rgba(26, 26, 51, 0.25);
    transition: all 0.3s ease-in-out;
    margin-bottom: 16px;
}

.faq-item:hover{
    background-color: #F6F2FE;
    transform: translateY(-5px);
}

.faq-item-theme{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.faq-item-theme{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-item-theme-text{
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item-theme-text p{
    font-size: 20px;
    font-weight: 600;
    color: #1A1A33;
}

.faq-item-line{
    margin-top: 24px;
    height: 1px;
    background: rgba(26, 26, 51, 0.1);
}

.faq-item-content{
    padding-left: 16px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-content.active{
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}


.faq-item-content-title{
    font-size: 16px;
    font-weight: 600;
    color: #1A1A33;
    margin-top: 24px;
}

.faq-item-content-text{
    color: rgba(26, 26, 51, 0.75);
    font-size: 14px;
    font-weight: normal;
}

.faq-item-theme-arrow{
    transition: all 0.3s ease-in-out;
}

.faq-item-theme-arrow.active{
    transform: rotate(90deg);
}

.faq-links a{
    font-size: 16px;
    font-weight: normal;
    line-height: 140%;
    text-decoration: underline;
    color: #8F5DE8;
}

.faq-links-line{
    height: 12px;
    width: 1px;
    border: 1px solid rgba(26, 26, 51, 0.25);
    margin: 0 16px;
    display: inline-block;
}
