.faq {
    padding-left: var(--pad-sides);
    padding-right: var(--pad-sides);
    color: #FDFDFD;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.faq .heading {
    color: #F7E9A3;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform:none;
    line-height: 1.2em;
}

.faq ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq ul li {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq ul .question {
    margin: 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: inherit;
}

.faq ul .answer {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.faq ul li:after {
    display:block;
    content: "";
    width:100%;
    height:1px;
    background-color:#9503CA;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);           
}    

@media (min-width:768px) {
    .faq .heading {
        font-size:30px;
    }

    .faq ul {
        gap: 60px;
    }

    .faq ul .question {
        font-size:24px;
    }

    .faq ul .answer {
        font-size:18px;
    }


}

@media (min-width:1200px) {
    .faq {
        max-width:var(--max-width);
        margin-left:auto;
        margin-right:auto;
    }
}