/* Do whatever you want */

img.wp-image-881 {width: 100%;}
.footer_widget ul {padding:0px;margin-top: 1rem;}
.footer_widget ul li {list-style: none;margin-bottom: 10px;}
.footer_widget ul li a {font-size: 14px;font-weight: 400;}

.faq-question {
    cursor: pointer;
    background: #f7f7f7;
    padding: 12px 40px 12px 12px;
    font-weight: bold;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    position: relative;
}

/* Default: plus icon */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 15px;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

/* Active: minus icon */
.faq-question.active::after {
    content: "–";
}

.faq-question p{
    margin-bottom:0px;
}

.faq-answer {
    border: 1px solid #ddd;
    border-top: none;
    padding: 12px;
    display: none;
}

.faq-question.active {
    background: #eaeaea;
}

h2.faq-title {
    font-weight: 500;
}