body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
}
header.hero {
  position: relative;
  text-align: center;
  color: white;
}
.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(60%);
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-text h1 {
  font-size: 3rem;
  margin: 0;
}
.hero-text p {
  font-size: 1.5rem;
}
section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}
h2 {
  color: #00573f;
}
.images-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.images-row img {
  width: 250px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
footer {
  background: #00573f;
  color: white;
  text-align: center;
  padding: 20px 10px;
}
@media (max-width: 768px) {
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 1rem; }
  .images-row img { width: 100%; max-width: 320px; }
}
