.faq-cpt {
    width: 100%;
    height: 100%;
    color: white;
}

.faq-wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 74px 2vw 50px;
    max-width: 1000px;
    position:relative;
}

.faq-content-wrapper {
    position:relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-title {
    text-align: center;
    margin-bottom: 74px;
    width: 100%;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0px 0px 50px;
    border-top: 1px solid var(--white-40);
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid var(--white-40);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 400;
}

.faq-icon {
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 1rem;
}

.faq-swift {
    position: absolute;
    width: 90%;
    top: auto;
    bottom: auto;
    z-index: 0;
    left: auto;
    right: auto;
}

@media (max-width: 767px) {
    .faq-wrapper {
        padding-left:22px;
        padding-right:22px;
        width: 100%;
    }
}