/* FAQ System Styles */

.faq-system-wrapper {
	margin: 20px 0;
}

.faq-item {
	margin-bottom: 10px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	overflow: hidden;
}

.faq-question {
	background: #f9f9f9;
}

.faq-toggle {
	width: 100%;
	text-align: left;
	padding: 15px;
	background: none;
	border: none;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #333;
}

.faq-toggle:hover {
	background: #f0f0f0;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
	transform: rotate(45deg);
}

.faq-icon {
	font-size: 20px;
	line-height: 1;
	transition: transform 0.2s ease;
}

.faq-answer {
	padding: 15px;
	background: #fff;
	border-top: 1px solid #e5e5e5;
}

/* List Style Override */
.faq-style-list .faq-item {
	border: none;
	margin-bottom: 20px;
}

.faq-style-list .faq-question h3 {
	margin: 0 0 10px 0;
	font-size: 18px;
}

.faq-style-list .faq-answer {
	border: none;
	padding: 0;
}
