﻿body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

header {
  background: #2e7d32;
  color: white;
  padding: 20px;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: #c8e6c9;
  padding: 40px;
  text-align: center;
}

section {
  padding: 20px;
  background: white;
  margin: 10px auto;
  max-width: 800px;
  border-radius: 8px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
}

footer {
  text-align: center;
  padding: 10px;
  background: #2e7d32;
  color: white;
}
.section-image {
  width: 100%;
  max-width: 800px;
  margin-top: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
