* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f7fef8;
  line-height: 1.6;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1100px;
  margin: auto;
}

header {
  background: #2e7d32;
  color: white;
}

.logo {
  font-size: 1.8em;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.btn {
  background: #fff;
  color: #2e7d32;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #dcedc8;
}

#hero {
  background: url("https://www.meristemdesign.co.uk/wp-content/uploads/2024/11/Meristem-Design-49.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero-content h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-content p {
  margin-bottom: 20px;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.benefits {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
}

.benefit {
  background: #e8f5e9;
  padding: 20px;
  margin: 10px;
  border-radius: 12px;
  flex: 1;
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

.grid img:hover {
  transform: scale(1.05);
}

.reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: auto;
}

.review {
  background: #f1f8e9;
  padding: 20px;
  border-radius: 8px;
  font-style: italic;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
}

input, select, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

input:focus, textarea:focus {
  outline: 2px solid #81c784;
}

button {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #388e3c;
}

footer {
  text-align: center;
  padding: 20px;
  background: #1b5e20;
  color: white;
  font-size: 0.9em;
}
