.faq-v5 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-q {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background-color: #fdf6f0;
    border: 2px solid #cc44cc;
    border-radius: 50px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #7b2d8b;
    transition: background-color 0.2s ease;
}

.faq-q:hover {
    background-color: #fdf0f4!important;
}

.faq-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 16px;
    color: #cc44cc;
    font-size: 11.2rem;
    line-height: 1;
}

.faq-icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-style: normal;
    font-size: 32px;
    font-weight: 700;
    color: #cc44cc;
    line-height: 1;
}

.faq-icon-inner::before {
    content: '+';
}

.faq-item.active .faq-icon-inner::before {
    content: '\2212';
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
}

.faq-a-inner {
    background-color: #F0EDE0;
    border-radius: 20px;
    padding: 24px 28px;
    color: #007077;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}