* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	padding: 40px 0;
}

.hero {
	background: url('images/hero.jpg') center/cover no-repeat;
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .overlay {
	background-color: rgba(0, 0, 0, 0.65); /* Darker overlay */
	padding: 60px;
	text-align: center;
	color: #fff;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

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

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

.cta-button {
	background-color: #ff6600;
	color: #fff;
	padding: 12px 25px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
}

.cta-button:hover {
	background-color: #e65c00;
}

.about {
	background-color: #f9f9f9;
	text-align: center;
}

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

.services {
	text-align: center;
}

.services h2 {
	font-size: 2rem;
	margin-bottom: 40px;
}

.service-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 20px;
}

.card {
	background-color: #fff;
	padding: 20px;
	flex: 1 1 30%;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	border-radius: 8px;
}

.card img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	margin-bottom: 15px;
}

.card h3 {
	margin-bottom: 15px;
	color: #ff6600;
}

.contact {
	background-color: #f9f9f9;
	text-align: center;
}

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

footer {
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 20px 0;
}
