@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.FAQSPage {
    font-family: 'Manrope', sans-serif;
    padding: 16px;
}
.FAQSPage #outer-container {
    background-color: #fff;
    max-width: 1124px;
    margin: 0 auto;
    padding: 16px;

}
.FAQSPage #outer-container h1 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: center; 
}
.FAQSPage #inner-container {
    background-color: #fff;
    border-radius: 16px;
    padding: 16px;
}
.FAQSPage #sub-container-1 h2 {
    font-size: 20px;
    margin-bottom: 12px;
}
.FAQSPage #sub-container-1 p {
    font-size: 14px;
    color: #8D98AF;
    margin-bottom: 20px;
}
.FAQSPage .faq {
    border-radius: 12px;
    border: 1px solid #F2F2F2;
    padding: 16px;
    margin-bottom: 16px;
}
.FAQSPage .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.FAQSPage .question h3 {
    font-size: 16px;
    flex: 1;
}
.FAQSPage .question img {
    width: 24px;
    transition: transform 0.3s ease;
}
.FAQSPage .answer {
    color: #8D98AF;
    font-size: 14px;
    display: none;
    margin-top: 8px;
}
@media (max-width: 768px) {
    .FAQSPage #outer-container {
        padding: 8px;
    }
    .FAQSPage #sub-container-1 h2 {
        font-size: 18px;
    }
    .FAQSPage .faq {
        padding: 12px;
    }
    .FAQSPage .question h3 {
        font-size: 14px;
    }
}
