.block.faq-block .faq-wrapper li {
	margin-bottom: 15px;
}

.block.faq-block .faq-wrapper li .faq-question {
	padding-right: 100px;
	position: relative;
	padding: 0;
    margin: 0;
    background: 0 0;
    border: none;
    font-size: 19px;
    color: #034164;
    width: 100%;
    text-align: left;
}

.block.faq-block .faq-wrapper li .faq-answer {
	display: none;
}

.block.faq-block .faq-wrapper li.fold-open .faq-question:after {
	transform: translateY(-50%);
}

.block.faq-block .faq-wrapper li:last-child {
	margin-bottom: 0;
}

.block.faq-block ul.faq-wrapper li.faq-item {
	padding: 20px 20px 20px 45px;
	margin-bottom: 10px;
	background: white;
	border-radius: 6px;
	border: 1px solid #e0e0e0; 
}

.block.faq-block ul.faq-wrapper li.faq-item .faq-answer {
	margin-top: 12px;
	font-size: 17px; 
	font-weight: 300;
	display: none;
}

.block.faq-block ul.faq-wrapper li.faq-item .faq-answer p {
	margin-bottom: 0;
}

.block.faq-block ul.faq-wrapper li.faq-item .faq-answer ul li {
	padding-left: 20px;
	position: relative;
	padding-bottom: 10px;
	font-weight: 400; 
}

.block.faq-block ul.faq-wrapper li.faq-item.fold-open button.faq-question:before {
	content: "-"; /* Minus symbol for the open state */
	width: auto; /* Adjust if necessary */
	height: auto;
	background: none; /* Remove the background image */
	position: absolute;
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
	font-size: 16px; /* Adjust the size as needed */
	color: navy; /* Adjust the color to match your design */
}

.block.faq-block ul.faq-wrapper li.faq-item button.faq-question:before {
	content: "+"; /* Plus symbol for the default (closed) state */
	width: auto; /* Adjust if necessary */
	height: auto;
	background: none; /* Remove the background image */
	position: absolute;
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
	font-size: 16px; /* Adjust the size as needed */
	color: navy; /* Adjust the color to match your design */
}

