.membership-faq {
 /* max-width: 900px; */
    margin: 40px auto;
}

.faq-title {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.faq-item {
    border: 1px solid #ececec;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background .2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-icon {
    font-size: 24px;
    color: #5B3A8E;
    transition: transform .3s;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 20px 18px;
    margin: 0;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}