* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    background-color: #2a4e03;
	color: #333;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	width: 100%;
}

h1 {
	margin: 0;
	font-size: 2.5rem;
}

h2 {
	margin-bottom: 1rem;
	color: #3399cc;
}

h3 {
	margin: 1rem 0 0.5rem;
}

/* Header */
header {
	background-color: #3399cc;
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.header-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-background img, header img {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: center;
}

header h1, header p {
	position: relative;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

header p {
	font-size: 1.2rem;
}

nav {
	background-color: #333;
	position: relative;
	z-index: 100;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
}

.nav-links {
	display: flex;
	list-style: none;
	transition: all 0.3s ease;
}

.nav-links li {
	margin: 0;
}

.nav-links a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	transition: background-color 0.3s;
}

.nav-links a:hover {
	background-color: #3399cc;
	color: #fff;
}

.hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.hamburger span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: white;
	margin: 5px 0;
	transition: all 0.3s ease;
}

/* Content sections */
section {
	margin-bottom: 40px;
	background-color: white;
	padding: 25px;
	border-radius: 8px;
	/* box-shadow: 8px 8px 10px rgba(0,0,0,0.1); */
	box-shadow: 0 0 10px black;
}

section p {
	padding-bottom: 1rem;
}

section ul {
	padding-left: 3rem;
}

/* FAQ Section */
.faq-item {
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}

.faq-question {
	font-weight: bold;
	color: #3399cc;
	cursor: pointer;
	position: relative;
	padding: 10px 30px 10px 0;
}

/* Footer */
footer {
	text-align: center;
	background-color: #333;
	color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}
	
	header {
		height: auto;
	}
	
	.header-background img, header img {
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
	
	.container {
		padding: 15px;
	}
	
	section {
		padding: 20px 15px;
	}
	
	.hamburger {
		display: block;
		z-index: 101;
	}
	
	.nav-container {
		padding: 0 15px;
	}
	
	.nav-links {
		position: fixed;
		flex-direction: column;
		background-color: #333;
		width: 100%;
		top: 46px;
		left: 0;
		transform: translateY(-150%);
		z-index: 100;
		box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	}
	
	.nav-links.active {
		transform: translateY(0);
	}
	
	.nav-links li {
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	
	.nav-links a {
		padding: 15px;
		width: 100%;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.8rem;
	}
	
	h2 {
		font-size: 1.5rem;
	}
	
	section {
		padding: 15px 12px;
	}
}
