/* Base reset and body */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: url('/images/hero.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  padding: 0;
}

/* Page container and sections */
main, header, footer {
  background-color: rgba(255, 255, 255, 0.95);
  max-width: 960px;
  margin: 2rem auto;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Headings and nav */
h1 {
  text-align: center;
  color: #2a6d4f;
  margin-bottom: 1rem;
}
nav {
  text-align: center;
  margin-bottom: 2rem;
}
nav a {
  text-decoration: none;
  color: #2a6d4f;
  margin: 0 10px;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}

/* Paragraph spacing */
section p {
  margin-bottom: 1.5rem;
}

/* Responsive image containers */
section div {
  text-align: center;
  margin: 2rem 0;
}
section img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 2rem;
}
footer a {
  color: #2a6d4f;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  main, header, footer {
    margin: 1rem;
    padding: 1rem;
  }
  h1 {
    font-size: 1.5rem;
  }
}
