/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 07 2025 | 08:02:26 */
.faq_wrap {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
}

.faq_chapter_section {
	display: flex;
	justify-content: space-between;
	align-items: center;
/* 	background: #fff; */
	border-radius: 16px;
	padding: 20px;
	gap: clamp(25px, 5vw, 35px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq_chapter_section img {
	flex: 0 0 40%;
	max-width: 40%;
	border-radius: 16px;
	object-fit: cover;
}

.faq_chapter_list {
	flex: 1 0 58%;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq_chapter_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #c2c2c2;
	font-size: clamp(16px, 2vw, 36px);
	padding: clamp(10px, 1.5vw, 20px) 0;
	color: #000;
	cursor: pointer;
	transition: color 0.3s;
}
.faq_chapter_item:first-child {border-top: 1px solid #c2c2c2;}
.faq_chapter_item:hover {
	color: #0077b6;
}
.faq_chapter_item span {
	font-size: clamp(16px, 2vw, 36px);
}

.faq_chapter_item img.arrow-icon {
  width: clamp(1.2em, 2vw, 2.2em);
  height: auto;
  margin-left: 8px;
  transition: transform 0.3s;
}

.faq_chapter_item:hover img.arrow-icon {
  transform: translateX(4px);
}


@media (max-width: 768px) {
	.faq_chapter_section {
		flex-direction: column;
		text-align: left;
		padding: 16px;
	}

	/* Reverse order for even section (image goes top) */
	.faq_chapter_section.img_order {
		flex-direction: column-reverse;
	}

	.faq_chapter_section img {
		flex: 0 0 auto;
		width: 100%;
		max-width: 300px;
		margin: 0 auto 16px;
	}

	.faq_chapter_list {
		flex: 0 0 auto;
		width: 100%;
	}
}