@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  padding: 50px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

main {
  margin-bottom: 60px;
}

.content {
  text-align: center;
}

h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #407536;
}

p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
}

#signup {
  border-radius: 8px;
}

.mc-field-group {
  display: flex;
  justify-content: center;
}

input[type='email'] {
  flex: 1;
  padding: 16px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
}

.button {
  display: inline-block;
  background-color: #407536;
  color: #fff;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #407536;
}

.benefits {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.benefit {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.benefit i {
  font-size: 48px;
  color: #407536;
  margin-bottom: 20px;
}

.benefit h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.benefit p {
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 1024px) {
  .benefits {
    flex-direction: column;
  }

  .benefit {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 600px) {
  .mc-field-group {
    flex-direction: column;
  }

  input[type='email'] {
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .button {
    border-radius: 4px;
  }
}
