.faqs-container {
    font-family: "Raleway", sans-serif;
    max-width: 800px;
    margin: 0 auto;
}

.faqs-container .questions-container {
    box-shadow: 0 4px 8px -3px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3.2rem !important; /* Desktop size */
}

@media only screen and (max-width: 400px) {
    h1 {
        font-size: 1.8rem !important; /* Mobile size */
    }
}

.faqs-container h2 {
    /*padding: 4px 32px;*/
    font-size: 28px;
}

.faqs-container .faq-header {
    display: flex;
    background: #3c7a9a;
    color: #f1faee;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.faqs-container .faq-header .open,
.faqs-container .faq-header .close {
    position: absolute;
    right: 0;
    padding: 0 32px;
    font-size: 22px;
    font-weight: bold;
    transform: translateY(-8px);
    opacity: 0;
    transition: all 500ms;
}

.faqs-container .faq-header .open.active,
.faqs-container .faq-header .close.active {
    opacity: 1;
    transform: translateY(0);
}

.faqs-container .faq-header h3 {
    font-size: 20px;
    padding: 0 32px;
}

.faqs-container .content {
    padding: 0 32px;
    background: #fdfffc;
    line-height: 2;
    max-height: 0;
    overflow: hidden;
    transition: all 500ms;
}

.faqs-container .content.active {
    max-height: 600px;
}
