.faq-content .faq-item {
    border-radius: 8px 8px 8px 8px;
    box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.03);
    transition: background .3s, transform .3s;
    background-color: #FFFFFF;
    margin-bottom: 15px;
}

.faq-content .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0px;
}

.faq-group__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    border-top: 2px solid;
    padding-top: 20px;
}

.faq-item-group {
    max-width: 768px;
    margin: 0 0 0 auto;
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none !important;
    border: none!important;
    font-size: 1rem!important;
    font-weight: 600!important;
    text-align: left!important;
    cursor: pointer;
    color: inherit!important;
    gap: 12px;
    text-transform: none !important;
    padding: 20px 25px;
}

.faq-item:not(.faq-item--open):hover {
   // background-color: #f5f5f5 !important;
    transform:translateY(-5px);
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.05);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    transition: transform 0.25s ease;
}

.faq-item--open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.faq-item--open .faq-item__answer {
    max-height: 1000px;
}

.faq-item__answer-inner {
    padding: 0 25px 20px;
    line-height: 1.5;
}
