/* FAQ Section */
.faq-section {
	width: 100%;
	padding: 60px 20px;
	background: #ffffff;
}

.faq-container {
	max-width: 900px;
	margin: 0 auto;
}

.faq-title {
	text-align: center;
	font-size: 34px;
	font-weight: 700;
	color: #111;
	margin: 0 0 40px;
}

/* FAQ List */
.faq-list {
	border-top: 1px solid #e5e5e5;
}

.faq-item {
	border-bottom: 1px solid #e5e5e5;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 0;
	cursor: pointer;
	text-align: left;
	font-size: 18px;
	font-weight: 600;
	color: #111;
	gap: 20px;
}

.faq-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #111;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.faq-answer p {
	font-size: 15px;
	line-height: 1.7;
	color: #444;
	margin: 0 0 22px;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 576px) {

	.faq-section {
		padding: 40px 20px;
	}

	.faq-title {
		font-size: 26px;
		margin-bottom: 25px;
	}

	.faq-question {
		font-size: 15px;
		padding: 18px 0;
		gap: 15px;
	}

	.faq-answer p {
		font-size: 14px;
		margin-bottom: 18px;
	}
}