.faq{
    display: grid;
    grid-template-rows: auto 0fr;   
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq:hover{
    background-color: #fafafa;
}

.faq.active{
    grid-template-rows: auto 1fr;
    background-color: #ECF0EF;
}

.faq.active .faq-answer{
    opacity: 1;
    padding: 16px;
}

.faq-question{
    display: flex;
    padding: 24px 16px 16px 16px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 16px;
}

.faq-question h3{
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 33px;
}

.faq-question img{
    width: 24px;
    height: 24px;
}

.faq-answer{
    opacity: 0;
    overflow: hidden;
    padding: 0px 16px;
    transition: all 0.3s ease;
}
