.faq-ff4f7e52-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-ff4f7e52-item {
	border-radius: 4px;
	overflow: hidden;
}

.faq-ff4f7e52-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background-color: #f7f7f7;
	color: #333;
	cursor: pointer;
	font-weight: 500;
	transition: background-color 0.3s ease;
	user-select: none;
}

.faq-ff4f7e52-question:hover {
	background-color: #eaeaea;
}

.faq-ff4f7e52-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.faq-ff4f7e52-item.active .faq-ff4f7e52-icon {
	transform: rotate(180deg);
}

.faq-ff4f7e52-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	background-color: #ffffff;
	color: #666;
	line-height: 1.6;
}

.faq-ff4f7e52-item.active .faq-ff4f7e52-answer {
	padding: 15px 20px;
	max-height: 1000px;
}