﻿
.container-faqs {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);

}



.faqs h4 {
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 21px;
    margin: 30px 0;
    color: #0E406C;
    width: 100%;
    text-align: left;
    text-decoration: underline;
}




/*Content*/


.filter-container {
    margin-bottom: 30px;
    text-align: center;
}

.filter-container label {
    font-weight: bold;
    margin-right: 10px;
    color: #0E406C;
}

select {
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 5px;
}

#faq-container {
    margin:0 0 70px 0;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    color: #0E406C;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.faq-question.active::after {
    content: '-';
    }

.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 16px;
    color: #444;
}

.faq-answer.active {
    display: block;
}
