body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	color: #333;
	background-color: #f9f9f9;
}

.main-header {
	background-color: #333;
	color: #fff;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.main-header .logo img {
	height: 50px;
}

.main-header nav ul {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

.main-header nav ul li {
	margin-left: 20px;
}

.main-header nav ul li a {
	color: #fff;
	text-decoration: none;
}

.hero {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 60px 30px;
	background-color: #eaeaea;
}

.hero-content {
	max-width: 600px;
}

.hero-content h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.cta-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #007bff;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
}

.hero-image img {
	max-width: 400px;
}

.features, .benefits {
	padding: 60px 30px;
}

.features h2, .benefits h2 {
	font-size: 2rem;
	margin-bottom: 40px;
}

.features-list {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.feature {
	max-width: 250px;
	text-align: center;
	margin-bottom: 30px;
}

.feature img {
	max-width: 200px;
	margin-bottom: 20px;
	border-radius:100px;
	overflow: hidden;
}

.feature h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.contact {
	background-color: #333;
	color: #fff;
	padding: 60px 30px;
	text-align: center;
}

.contact h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}

.contact-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #007bff;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
}
