:root {
  --primary-green: #004d00;
  --secondary-green: #006600;
  --light-green: #008000;
  --accent-gold: #ffd700;
  --text-light: #ffffff;
  --text-dark: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--primary-green);
  color: var(--text-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  padding: 40px 0;
  background: var(--secondary-green);
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid var(--accent-gold);
}

h1 {
  font-size: 2.5em;
  color: var(--accent-gold);
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 1.8em;
  color: var(--text-light);
  margin-bottom: 20px;
}

nav {
  background: var(--secondary-green);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: var(--light-green);
  color: var(--accent-gold);
}

.content-box {
  background: var(--secondary-green);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 1px solid var(--accent-gold);
}

.content-box p {
  margin-bottom: 15px;
  line-height: 1.8;
}

section {
  margin-bottom: 40px;
}

section h2 {
  color: var(--accent-gold);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-gold);
  margin-bottom: 20px;
}

footer {
  text-align: center;
  padding: 20px;
  background: var(--secondary-green);
  border-radius: 8px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  h1 {
    font-size: 2em;
  }
  
  h2 {
    font-size: 1.5em;
  }
}