.xcv-faq {
    width: 100%;
}

.xcv-faq .xcv-faq-item {
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.xcv-faq .xcv-faq-item .xcv-faq-title {
    width: 100%;
    border: 0;
    background: #E3D4F3;
    padding: 16px 20px;
    border-radius: 6px 6px 0 0;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 16px;
    font-weight: 600;
    color: #2D0A33;

    transition: .25s;
}

.xcv-faq .xcv-faq-item .xcv-faq-title:hover {
    background: #E3D4F3;
}

.xcv-faq .xcv-faq-item .xcv-faq-title.active {
    background: #6B1C7A;
    color: #fff;
}

.xcv-faq-title.active .xcv-faq-item {
    border-color: #6B1C7A;
}

.xcv-icon {
    font-size: 22px;
    transition: transform .3s ease;
}

.xcv-faq .xcv-faq-item .xcv-faq-title.active .xcv-icon {
    transform: rotate(45deg);
}

.xcv-faq-content {
    display: none;
    padding: 20px;
    background: #fff;
    color: #414141;
    border-radius: 0 0 6px 6px;
    border: 1px solid #6B1C7A;

    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.xcv-faq-content p:last-child {
    margin-bottom: 0;
}