/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #eefaf2;
  color: #2e4d36;
  line-height: 1.6;
  padding: 20px;
}

header {
  background-color: #3da35d;
  color: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

nav {
  text-align: center;
  margin-bottom: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

nav ul li a {
  text-decoration: none;
  color: #2e4d36;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #3da35d;
}

.content {
  background: #ffffff;
  border-left: 5px solid #3da35d;
  padding: 25px;
  margin: 20px auto;
  border-radius: 10px;
  max-width: 800px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.content h2 {
  margin-bottom: 15px;
  color: #3da35d;
}

.content ul {
  list-style: square inside;
  padding-left: 10px;
}

.content a {
  color: #1e754e;
  text-decoration: underline;
}

footer {
  text-align: center;
  margin-top: 40px;
  color: #6b8b74;
  font-size: 0.9rem;
}
