* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #1a2e1a;
  /* Verde muy oscuro */
  /* Puedes buscar una imagen de un campo en Unsplash y poner el link aquí */
  background-image: linear-gradient(rgba(26, 46, 26, 0.8), rgba(26, 46, 26, 0.8)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.header h3 {
  color: #a3d9a5;
  /* Verde claro */
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.header h1 {
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.header p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 700px;
  color: #e0e0e0;
}

.status-box {
  margin-top: 30px;
  padding: 10px 20px;
  border: 1px solid #a3d9a5;
  border-radius: 50px;
  background: rgba(163, 217, 165, 0.1);
}

.learn-more>a>button {
  background: #2e7d32;
  /* Verde Agro */
  border-radius: 4px;
  border: none;
  width: 200px;
  margin-top: 50px;
  height: 55px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.learn-more>a>button:hover {
  background: #1b5e20;
}

.footer-info {
  position: absolute;
  bottom: 30px;
  font-size: 14px;
  color: #a3d9a5;
}

@media screen and (max-width: 600px) {
  .header h1 {
    font-size: 40px;
  }

  .header p {
    font-size: 16px;
  }
}