body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

header {
	background-color: #4caf50;
	color: white;
	padding: 1em;
	text-align: center;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	background: black;
	display: flex;
	justify-content: space-around;
	align-items: baseline;
}

header h1 {
	margin: 0;
	padding-bottom: 10px;
}

nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	color: white;
}

nav ul li {
	display: inline;
	margin: 0 10px;
	color: white;
}

li a {
	text-decoration: none;
	color: white;
}

main {
	padding-top: 150px; /* Adjust this value if necessary */
}

.hero {
	background: url("header.jpg") no-repeat center center;
	background-size: cover;
	color: white;
	padding: 100px 0;
	text-align: center;
}

.hero-content {
	background: rgba(0, 0, 0, 0.5);
	display: inline-block;
	padding: 50px;
}

.features-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: white;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.features-image {
	flex: 1;
	min-width: 300px;
}

.features-image img {
	max-width: 100%;
	height: auto;
}

.features-text {
	flex: 2;
	min-width: 300px;
	padding: 20px;
}

.content-block {
	background-color: #000000;
	padding: 150px;
	text-align: center;
}

#contact {
	color: #fff;
}

.content-inner {
	max-width: 800px;
	margin: 0 auto;
}

footer {
	background-color: #333;
	color: white;
	text-align: center;
	padding: 10px 0;
	position: relative;
	bottom: 0;
	width: 100%;
}
