body {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f9f5;
  color: #2e4d2c;
  margin: 0;
  padding: 0;
}
header {
  background: #6cb173;
  color: white;
  text-align: center;
  padding: 40px 20px;
}
.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.logo-title img.logo {
  height: 80px;
}
h1 {
  margin-bottom: 0.3em;
}
.block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
  border-bottom: 1px solid #dce7db;
}
.block.reverse {
  flex-direction: row-reverse;
}
.text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}
.image-placeholder {
  flex: 1;
  min-width: 300px;
  background: #eef0d9;
  height: 300px;
  margin: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5d735f;
  font-size: 1em;
}
form {
  margin-top: 20px;
}
input[type="email"] {
  padding: 10px;
  width: 250px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  padding: 10px 20px;
  background: #4caf50;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}
button:hover {
  background: #388e3c;
}
footer {
  background: #6cb173;
  color: white;
  text-align: center;
  padding: 20px;
}
