* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
	min-height: 100vh;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: #2c5530;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}
.nav-links a {
	color: #2c5530;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 0.5rem 1rem;
	border-radius: 5px;
	font-weight: 500;
}
.nav-links a:hover {
	background: rgba(44, 85, 48, 0.1);
	color: #1a3320;
}
main {
	margin-top: 80px;
}
.hero {
	text-align: center;
	padding: 4rem 0;
	color: white;
}
.hero h1 {
	font-size: 3.2rem;
	margin-bottom: 1rem;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
	animation: fadeInUp 1s ease;
	font-weight: 700;
}
.hero .subtitle {
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	color: #e8f5e8;
	font-weight: 400;
	animation: fadeInUp 1s ease 0.2s both;
}
.hero p {
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
	opacity: 0.95;
	animation: fadeInUp 1s ease 0.4s both;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease 0.6s both;
}
.btn {
	display: inline-block;
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-primary {
	background: linear-gradient(45deg, #c17d11, #e68900);
	color: white;
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(193, 125, 17, 0.4);
	background: linear-gradient(45deg, #d48806, #ff9500);
}
.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}
.btn-secondary:hover {
	background: white;
	color: #2c5530;
	transform: translateY(-2px);
}
.info-section {
	background: white;
	padding: 5rem 0;
	margin-top: 2rem;
}
.info-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #2c5530;
	font-weight: 700;
}
.info-section p {
	text-align: center;
	font-size: 1rem;
	margin-bottom: 3rem;
	color: #2c5530;
	font-weight: 10;
}
.concerns-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}
.concern-card {
	background: linear-gradient(145deg, #f8f9fa, #e9ecef);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	border-left: 4px solid #c17d11;
}
.concern-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.concern-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(45deg, #2c5530, #4a7c59);
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
}
.concern-card h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: #2c5530;
	text-align: center;
	font-weight: 600;
}
.concern-card p {
	color: #555;
	line-height: 1.7;
	text-align: center;
}
.news-card p {
	color: #555;
	line-height: 1.7;
	text-align: left;
	margin: auto;
	margin-bottom: 10px
}
.action-section {
	background: linear-gradient(135deg, #2c5530 0%, #1a3320 100%);
	padding: 4rem 0;
	text-align: center;
	color: white;
}
.action-section h2 {
	font-size: 2.3rem;
	margin-bottom: 2rem;
	font-weight: 700;
}
.action-section p {
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.deadline-notice {
	background: rgba(193, 125, 17, 0.2);
	border: 2px solid #c17d11;
	border-radius: 10px;
	padding: 1.5rem;
	margin: 2rem 0;
	color: #fff;
}
.deadline-notice h3 {
	color: #ffcc66;
	margin-bottom: 0.5rem;
}
.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}
.contact-card {
	background: rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	border-radius: 10px;
	backdrop-filter: blur(10px);
}
.contact-card h4 {
	color: #ffcc66;
	margin-bottom: 0.5rem;
}
footer {
	background: #1a3320;
	color: white;
	text-align: center;
	padding: 2rem 0;
}
footer a {
	color: white;
	text-decoration: none;
}
.stats-row {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin: 3rem 0;
	flex-wrap: wrap;
}
.stat-item {
	text-align: center;
}
.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: #c17d11;
	display: block;
}
.stat-label {
	font-size: 0.9rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}
	.concerns-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 0;
	}
	.concern-card {
		padding: 1.5rem;
		margin: 0;
		width: 100%;
		max-width: none;
	}
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	.btn {
		width: 100%;
		max-width: 280px;
	}
	.stats-row {
		gap: 2rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 10px;
	}
	.concern-card {
		padding: 1rem;
		margin: 0;
		width: calc(100% - 20px);
		max-width: none;
		box-sizing: border-box;
	}
	.concerns-grid {
		gap: 1rem;
		padding: 0 10px;
	}
}
