.section-faq {
    padding: 80px 0;
}

.faq-heading {
    font-size: 62px;
    font-weight: 600;
    margin-bottom: 48px;
    color: black;

}

.faq-list {
    margin: 0 auto;
    background: #FDFCFA;
    border-radius: 28px;
    padding: 40px;
    /*border: solid 1px #000000;*/
}

.faq-item{
    padding-top: 40px;
}

.faq-item.is-open{
    padding: 40px 0;
}

.faq-item:not(:last-child) {
    border-bottom: 2px solid #F4F2E7;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-black);
    text-align: left;
    gap: 16px;
    padding: 0 20px;
}

.faq-item__question:hover {
    color: var(--color-jungle-green);
}

.faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item:not(.is-open) .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    margin-top: 35px;
}

.faq-item__answer p {
    padding: 0 0 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-black);
    opacity: 0.75;
}
