* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
}

header {
	background: linear-gradient(135deg, #658646 0%, #37541d 100%);
	color: white;
	padding: 2rem 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-grid {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 2rem;
	align-items: center;
}

.logo {
	width: 120px;
	height: 120px;
}

.header-content {
	text-align: left;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

.tagline {
	font-size: 1.2rem;
	opacity: 0.95;
}

nav {
	background: #658646;
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 2rem;
	justify-content: center;
}

nav a {
	color: white;
	text-decoration: none;
	transition: color 0.3s;
}

nav a:hover {
	color: #9acd32;
}

section {
	padding: 4rem 0;
}

section:nth-child(even) {
	background: #f8f9fa;
}

h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #white;
	text-align: center;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-card h3 {
	color: #6b8e23;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.service-card ul {
	list-style: none;
	padding-left: 0;
}

.service-card li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.service-card li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #6b8e23;
	font-weight: bold;
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	font-size: 1.1rem;
}

.cta-section {
	background: linear-gradient(135deg, #6b8e23 0%, #658646 100%);
	color: white;
	text-align: center;
}

.cta-button {
	display: inline-block;
	background: white;
	color: #658646;
	padding: 1rem 2rem;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	margin-top: 1rem;
	transition: transform 0.3s;
}

.cta-button:hover {
	transform: scale(1.05);
}

footer {
	background: #556b2f;
	color: white;
	text-align: center;
	padding: 2rem 0;
}

@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}
	
	.header-grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 1rem;
	}
	
	.logo {
		margin: 0 auto;
	}
	
	.header-content {
		text-align: center;
	}
	
	nav ul {
		flex-direction: column;
		gap: 1rem;
	}
	
	.services-grid {
		grid-template-columns: 1fr;
	}
}
