Changed around line 1
+ :root {
+ --primary-color: #2c5530;
+ --secondary-color: #8ba888;
+ --accent-color: #d4e4d2;
+ --text-color: #333;
+ --background-color: #fff;
+ --transition: all 0.3s ease;
+ }
+
+ [data-theme="dark"] {
+ --text-color: #e0e0e0;
+ --background-color: #1a1a1a;
+ --secondary-color: #4a6b47;
+ --accent-color: #243c23;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ color: var(--text-color);
+ background: var(--background-color);
+ transition: var(--transition);
+ }
+
+ .navbar {
+ position: fixed;
+ width: 100%;
+ background: var(--background-color);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ z-index: 1000;
+ }
+
+ .nav-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .mobile-menu {
+ display: none;
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
+ url('images/hero-bg.jpg') center/cover;
+ color: white;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ padding: 2rem;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .cta-button {
+ padding: 1rem 2rem;
+ font-size: 1.1rem;
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ border-radius: 30px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(0,0,0,0.2);
+ }
+
+ .stats-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .stat-card {
+ text-align: center;
+ padding: 2rem;
+ background: var(--accent-color);
+ border-radius: 10px;
+ transition: var(--transition);
+ }
+
+ .stat-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .stat-number {
+ font-size: 2.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ @media (max-width: 768px) {
+ .mobile-menu {
+ display: block;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: var(--background-color);
+ padding: 1rem;
+ }
+
+ .nav-links.active {
+ display: flex;
+ flex-direction: column;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+ }