

.faq-question {
    width: 100%;
    padding: 30px 0;
    text-align: left;
    background-color: unset !important;
    border: none;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    color: black;
}

.faq-question:hover{
    color: black !important;
    background-color: unset !important;
}

.faq-question.open {
    background-color: unset;
    color: black;
}
.faq-title {
    font-family: "Titillium Web";
    color: black !important;
    font-size: 20px;
    flex: 1;
}
.faq-icon {
    font-family: "Titillium Web";
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    margin: -10px 20px 0 20px;
    transition: transform 0.3s ease;
    color: #00B1E6;
}
.faq-answer {
    font-family: "Titillium Web";
    cursor: pointer;
    display: none;
    margin-top: -20px;
    padding: 0 0 20px 0;
    background-color: unset;
}
.faq-item{
    color: black;
    border-bottom: 2px solid black;
}

.faq-item:last-child {
    border-bottom: none;
}
