.custom-faq-wrapper{
    margin-top:20px;
}

.custom-faq-item{
    border-bottom:1px solid #ddd;
    margin-bottom:10px;
}

.custom-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    text-align: left;
    padding: 15px 45px 15px 15px;

    background: #d62828;
    color: #fff;

    border: none;
    border-radius: 5px;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;

    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;

    min-height: 60px;
    height: auto;

    cursor: pointer;
    position: relative;
}

.custom-faq-answer{
    display:none;
    padding:15px;
    background:#fff;
}

.custom-faq-item.active .custom-faq-answer{
    display:block;
}

@media (max-width: 767px) {
    .custom-faq-question {
        font-size: 14px;
        line-height: 1.5;
        padding: 12px 40px 12px 12px;
    }
}