/* FAQ Section Styles from Old Site */
.faq-section {
    width: 100%;
    padding: 140px 0;
}

@media (max-width: 1200px) {
    .faq-section {
        padding: 80px 0;
    }
}

.faq-section .faq-heading {
    text-align: center;
    margin-bottom: 48px;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 800px) {
    .faq-section .faq-heading {
        font-size: 28px;
    }
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 18px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 800px) {
    .faq-header h2 {
        font-size: 28px;
    }
}

.faq-container .faq:first-child {
    border-top: 1px #ddd solid;
}

.faq-question {
    cursor: pointer;
    padding: 32px 40px 32px 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    border-bottom: 1px #ddd solid;
    position: relative;
    font-size: 22px;
    line-height: 32px;
    transition: 0.3s;
}

@media (max-width: 800px) {
    .faq-question {
        font-size: 18px;
        padding: 16px 40px 16px 16px;
    }
}

.faq-question:after {
    content: '+';
    font-size: 1.5em;
    position: absolute;
    top: 32px;
    right: 16px;
    color: #7371ff;
}

@media (max-width: 800px) {
    .faq-question:after {
        top: 16px;
    }
}

.faq-question.active:after {
    content: '−';
}

.faq-question .faq-answer {
    display: none;
    margin-top: 24px;
}

.faq-question .faq-answer p {
    margin: 0;
    font-weight: 300;
    font-size: 18px;
    color: #777;
}

@media (max-width: 600px) {
    .faq-question .faq-answer p {
        line-height: 28px;
        font-size: 16px;
    }
}
