.modern-faq-accordion-5469 {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-5469-item {
	border: 1px solid #eeeeee;
	border-radius: 8px;
	overflow: hidden;
	background-color: #ffffff;
	transition: all 0.3s ease;
}

.faq-5469-item.active {
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-5469-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 25px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
	color: #54595F;
	transition: color 0.3s ease;
}

.faq-5469-title {
	flex-grow: 1;
	padding-right: 15px;
}

.faq-5469-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6EC1E4;
	transition: transform 0.3s ease;
}

.faq-5469-icon svg {
	width: 18px;
	height: 18px;
	fill: #6EC1E4;
}

.faq-5469-content-wrapper {
	overflow: hidden;
}

.faq-5469-content {
	padding: 0 25px 25px 25px;
	color: #54595F;
	line-height: 1.6;
}

.faq-5469-item.active .faq-5469-icon-closed {
	display: none !important;
}

.faq-5469-item.active .faq-5469-icon-opened {
	display: flex !important;
}