.faq-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.faq-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.faq-title h2{
    font-size: 20px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-bottom: -10px;
}

.dark-theme .faq-title h2{
    color: #fff;
}
.faq-title p{
    font-size: 14px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #7d7d7d;
}

.faq-accordions{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.accordions{
    width: 60%;
}

.accordion-content{
    transition: max-height 0.3s ease-out;
    padding-bottom: 15px;
}

@media screen and (max-width: 850px) {
    .faq-title h2 {
        font-size: 18px;
    }

    .faq-title {
        display: flex;
        justify-items: center;
        align-items: center;
        padding-left: 0;
    }

    .accordions{
        width: 80%;
    }
    
}