.faq-widget-b87d4552-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.faq-widget-b87d4552-item {
	border: 1px solid #54595F;
	border-radius: 4px;
	overflow: hidden;
}
.faq-widget-b87d4552-title {
	padding: 15px 20px;
	background-color: #6EC1E4;
    color: #ffffff;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
    font-family: Roboto;
	transition: background-color 0.3s ease;
}
.faq-widget-b87d4552-title:hover {
	background-color: #f1f1f1;
    color: #6EC1E4;
}
.faq-widget-b87d4552-title.active .faq-widget-b87d4552-icon {
	transform: rotate(180deg);
}
.faq-widget-b87d4552-icon {
	transition: transform 0.3s ease;
	display: flex;
}
.faq-widget-b87d4552-content {
	padding: 15px 20px;
	border-top: 1px solid #54595F;
    color: #7A7A7A;
    font-family: Roboto;
    font-weight: 400;
}