* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background-color: #f4fff4;
  color: #2e4d2e;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

header {
  background-color: #2e8b57;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

.hero {
  background-color: #a8e6a1;
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.hero .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2e8b57;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.hero .btn:hover {
  background-color: #256d45;
}

.about {
  padding: 40px 0;
  background-color: #e1f7e1;
}

.about h2 {
  text-align: center;
  margin-bottom: 20px;
}

.gallery {
  padding: 40px 0;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 20px;
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
}

footer {
  background-color: #2e8b57;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}
div.container{
text-align: center;
}