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

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

.hero h1 {
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	margin: 0;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 80px;
}

.intro {
	padding: 60px 40px;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.intro h2 {
	font-size: 2.5rem;
	margin-bottom: 30px;
	color: #333;
	font-weight: bold;
}

.intro p {
	font-size: 1.1rem;
	color: #666;
	max-width: 800px;
	margin: 0 auto;
}

.content-grid {
	padding: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.content-block {
	display: flex;
	align-items: center;
	margin-bottom: 60px;
	gap: 40px;
}

.content-block.reverse {
	flex-direction: row-reverse;
}

.content-block img {
	width: 400px;
	height: 300px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}

.text-content {
	flex: 1;
}

.text-content h3 {
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 20px;
	font-weight: bold;
}

.text-content p {
	font-size: 1rem;
	color: #666;
	line-height: 1.8;
}

footer {
	background: #1a2332;
	color: white;
	text-align: center;
	padding: 40px 20px;
}

footer h3 {
	font-size: 2rem;
	margin-bottom: 20px;
	font-weight: bold;
}

footer p {
	margin: 10px 0;
	font-size: 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
	.content-block,
	.content-block.reverse {
		flex-direction: column;
		text-align: center;
	}
	
	.content-block img {
		width: 100%;
		max-width: 400px;
	}
	
	.hero h1 {
		font-size: 2rem;
	}
	
	.intro h2 {
		font-size: 2rem;
	}
}