
.hero {
  background: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994') no-repeat center center/cover;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero h1 {
  font-size: 3rem;
  z-index: 1;
}
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.section h2 {
  font-size: 2.5rem;
  color: #006400;
  margin-bottom: 20px;
}
.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.two-col P{
  font-size: 1.5rem;
}
.two-col ul{
  font-size: 1.3re;
}
.two-col img {
  width: 80%;
  border-radius: 12px;
}
.two-col > div {
  flex: 1;
}
.highlight {
  background-color: #eaf5ea;
  padding: 30px;
  border-left: 6px solid #2e8b57;
  border-radius: 12px;
  margin-top: 40px;
}
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.grid-gallery img {
  width: 100%;
  border-radius: 8px;
  transition: 0.3s;
}
.grid-gallery img:hover {
  transform: scale(1.05);
}
.cta {
  text-align: center;
  background-color: #006400;
  color: white;
  padding: 40px 20px;
  border-radius: 0;
}
.cta h3 {
  margin-bottom: 10px;
}
.cta button {
  padding: 12px 30px;
  background: white;
  color: #006400;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .two-col {
    flex-direction: column;
  }
}