* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}
body {
	line-height: 1.6;
	color: #333;
}
header {
	background: #2c3e50;
	color: white;
	padding: 1rem;
	text-align: center;
}
.logo {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}
.logo span {
	color: #3498db;
}
nav {
	background: #34495e;
	padding: 0.5rem;
}
nav ul {
	display: flex;
	justify-content: center;
	list-style: none;
}
nav ul li {
	margin: 0 1rem;
}
nav ul li a {
	color: white;
	text-decoration: none;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem;
}
.hero {
	background: #ecf0f1;
	padding: 2rem;
	text-align: center;
	margin-bottom: 2rem;
}
.services {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 2rem;
}
.service {
	flex-basis: 30%;
	margin-bottom: 1rem;
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: 5px;
}
.service img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	margin-bottom: 1rem;
}
.contact {
	background: #ecf0f1;
	padding: 2rem;
	margin-bottom: 2rem;
}
footer {
	background: #2c3e50;
	color: white;
	text-align: center;
	padding: 1rem;
}
@media (max-width: 768px) {
	.service {
		flex-basis: 100%;
	}
}