/* Global styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f8f8f5;
}

a {
  color: #005a3c;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url('heroimage.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin: 0;
  letter-spacing: 1px;
}
.tagline {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-style: italic;
}

/* Navigation */
.nav {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.nav a {
  color: #ffecc2;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  font-size: 0.9rem;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Sections */
.section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.section h2 {
  margin-top: 0;
  color: #0d3b2e;
  border-bottom: 2px solid #d2b48c;
  display: inline-block;
  padding-bottom: 5px;
}
.section ul, .section ol {
  margin-left: 20px;
}
.section ul li, .section ol li {
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-section {
  background-color: #fffbe9;
  border-top: 2px solid #e0c97f;
  border-bottom: 2px solid #e0c97f;
}
.contact-form {
  display: grid;
  gap: 10px;
  max-width: 500px;
  margin: 20px auto;
}
.contact-form label {
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  background-color: #0d3b2e;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}
.contact-form button:hover {
  background-color: #12543f;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #0d3b2e;
  color: #fff;
  font-size: 0.9rem;
}