.wb-faq-item {   
    border-radius: 0px;
	display:none;
	border-bottom: 1px solid #929292;
    margin-bottom: 15px;
    overflow: hidden;
}

.wb-faq-question {
    padding:0px 13px 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.wb-faq-question h3 {
    font-family: 'Poppins', sans-serif;
    gap: 1rem;
    font-weight: 400 !important;
    padding: 1rem;
    font-size: 19.2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.wb-faq-icon {
    font-size: 28px;
    transition: 0.3s;
}

.wb-faq-answer {
    display: none;
    padding: 20px;
    border-top: 1px solid #eee;
    color: #000;
	font-size: 18px;  
    font-weight: normal;
    transition: max-height 0.2s ease-out;  
    background: #f8f6f5;
    margin: 10px 0px;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
	background:#f8f6f5;
    line-height: 1.6;
}

.wb-faq-item.active .wb-faq-answer {
    display: block;
}

.wb-faq-item.active .wb-faq-icon {
    transform: rotate(45deg);
}
