﻿.faq-title {
    color: #044735;
}
.section-faq {
    margin: 50px;
}
.faq-info {
    margin:auto;
}
.faq-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 30px;
    border: none;
    background: #eee;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.faq-answer {
    display: none;
    padding: 0 15px;
}

.faq-item.active .faq-question {
    background: var(--green-default);
    color: white;
    border-radius: 10px 10px 0 0;
    font-size: 24px;
    font-weight: bold;
}
.faq-item .faq-question {
    color: #044735;
    font-size: 23px;
    font-weight: bold;
}

.faq-item.active .faq-answer {
    display: block;
    background: var(--green-default);
    color:#fff;
    line-height:3;
}
