
.da-faqs {
    max-width: 900px;
    margin: 60px auto;
}

.da-faqs h2 {
    text-align: center;
    color: #152A4E;
    font-size: 32px;
    margin-bottom: 35px;
}

.da-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    border-left: 5px solid transparent;
    transition: .3s;
}

.da-faq-item.active {
    border-left-color: #E33155;
}

.da-faq-q {
    width: 100%;
    background: #152A4E;
    color: #fff;
    padding: 18px 55px 18px 20px;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    border: none;
    cursor: pointer;
    position: relative;
}

.da-faq-q:hover {
    background: #E33155;
}

.da-faq-q::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
}

.da-faq-item.active .da-faq-q::after {
    content: "−";
}

.da-faq-a {
    display: none;
    padding: 20px;
    color: #444;
    line-height: 1.7;
}

.da-faq-item.active .da-faq-a {
    display: block;
}
