.faq-section {
	padding: 30px 0px 20px 0px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	overflow: visible;
}

.faq-wave-top {
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 30px;
	background: white;
	border-radius: 50% 50% 0 0;
	z-index: 10;
}

.faq-content {
	position: relative;
	margin-top: 20px;
}

.faq-wave-bottom {
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 40px;
	background: white;
	border-radius: 0 0 50% 50%;
	z-index: 10;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-header {
	text-align: center;
	margin-bottom: 40px;
	padding: 0 20px;
}

.faq-subtitle {
	background: linear-gradient(
		0deg,
		rgba(0, 82, 204, 1) 0%,
		rgba(40, 163, 255, 1) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 8px;
	letter-spacing: 0.5px;
}

.faq-title {
	color: #222;
	font-size: 45px;
	font-weight: 700;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.3;
	padding: 0 10px;
}

@media (max-width: 768px) {
	.faq-title {
		font-size: 32px;
	}
	.faq-header {
		padding: 0 30px;
	}
	.faq-title {
		padding: 0 15px;
	}
}

@media (max-width: 480px) {
	.faq-title {
		font-size: 28px;
	}
	.faq-subtitle {
		font-size: 16px;
	}
	.faq-header {
		padding: 0 20px;
	}
	.faq-title {
		padding: 0 10px;
	}
}

