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

/* Body Styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: #2a2a2a; /* Deep grey background for a dark earth feel */
  color: #fff;
  line-height: 1.6;
}

/* Main Container */
.main-container {
  width: 100%; /* Full width of the viewport */
  max-width: 1200px; /* Maximum width for central content */
  margin: 0 auto; /* Center horizontally */
  padding: 20px;
}

/* Header */
header {
  background-color: #3e5c43; /* Earthy Green background */
  padding: 20px 0;
}

header h1 {
  text-align: center;
  font-size: 2.5em;
}

header nav {
  text-align: center;
  margin-top: 20px;
}

header nav ul {
  list-style: none;
  padding: 0;
}

header nav ul li {
  display: inline;
  margin-right: 20px;
}

header nav ul li a {
  color: #D1C6B1; /* Light Tan color */
  text-decoration: none;
  font-weight: bold;
}

header nav ul li a:hover {
  text-decoration: underline;
}

/* Top Row */
.top-row {
  text-align: center;
  padding-bottom: 20px;
}

.top-row h1 {
  font-size: 3em;
  color: #8A9A5B; /* Olive Green */
}

.top-row p {
  font-size: 1.2em;
  color: #D1C6B1; /* Light tan */
}

/* Content Area */
.content {
  display: block;
  margin-bottom: 30px;
  width: 100%;
}

.content-row {
  width: 100%;
  display: flex;
  justify-content: space-between; /* Distribute space between columns */
}

.content-item {
  background-color: #3e5c43; /* Earthy green */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.content-item.left {
  width: 14%; /* Left column takes 14% of the row width */
}

.content-item.center {
  width: 70%; /* Center column takes 70% of the row width */
}

.content-item.right {
  width: 14%; /* Right column takes 14% of the row width */
}

/* Bottom Row */
.bottom-row {
  width: 100%;
  margin-top: 40px;
}

.bottom-item {
  background-color: #5a3d29; /* Brownish background */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.bottom-item h2 {
  color: #D1C6B1; /* Tan color for headers */
}

/* Links */
a {
  color: #8A9A5B; /* Olive Green for links */
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #3e5c43; /* Greenish footer */
  color: #fff;
  margin-top: 50px;
}
