.about-hero {
	position: relative;
	text-align: center;
	padding: 50px 0;
	overflow: hidden;
}

.about-hero h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.about-hero p {
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.about-content {
	padding: 80px 0;
}

.about-content h2 {
	color: #333;
	margin-bottom: 30px;
}

.feature-box {
	text-align: center;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.feature-box:hover {
	transform: translateY(-10px);
}

.feature-box i {
	font-size: 3rem;
	color: #007bff;
	margin-bottom: 20px;
}

.feature-list {
	list-style-type: none;
	padding-left: 0;
}

.feature-list li {
	padding: 10px 0;
	font-size: 1.1rem;
}

.feature-list li:before {
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #28a745;
	margin-right: 10px;
}

.cta-section {
	background-color: #f8f9fa;
	padding: 60px;
	text-align: center;
	border-radius: 10px;
}

.cta-section h2 {
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.about-hero h1 {
		font-size: 2.5rem;
	}

	.about-hero p {
		font-size: 1.2rem;
	}

	.about-content {
		padding: 40px 0;
	}

	.feature-box {
		margin-bottom: 30px;
	}
}