body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f0fdf4;
  color: #2e7d32;
}

.hero {
  background-color: #2e7d32;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
}

.form-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.form-container {
  background: white;
  border-radius: 10px;
  padding: 30px;
  width: 400px;
  box-shadow: 0 6px 20px rgba(0, 128, 0, 0.15);
}

.form-container h2 {
  margin-bottom: 20px;
  color: #2e7d32;
  text-align: center;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #a5d6a7;
  border-radius: 5px;
  margin-top: 5px;
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 25px;
  background-color: #2e7d32;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #1b5e20;
}

.form-note {
  font-size: 13px;
  color: #555;
  text-align: center;
  margin-top: 15px;
}

.confirmation {
  max-width: 600px;
  margin: 100px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.confirmation h2 {
  color: #388e3c;
  font-size: 28px;
  margin-bottom: 10px;
}

.confirmation .actions {
  margin: 25px 0;
}

.btn {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin: 10px;
}

.btn-green {
  background: #388e3c;
  color: white;
}

.btn-green:hover {
  background: #2e7d32;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1ebc59;
}

.note {
  margin-top: 25px;
  font-style: italic;
  font-size: 14px;
  color: #2e7d32;
}

.error {
  color: red;
  text-align: center;
  font-size: 18px;
  margin-top: 40px;
}

.confirmation {
  max-width: 720px;
  margin: 40px auto;
  padding: 30px;
  background: #f5fff5;
  border-left: 6px solid #2ecc71;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.confirmation h2 {
  font-size: 24px;
  color: #27ae60;
}

.success-message {
  font-size: 16px;
  margin-bottom: 20px;
}

.next-steps h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.action-box {
  background: #fff;
  border-left: 4px solid #2980b9;
  padding: 15px 20px;
  border-radius: 6px;
}

.action-note {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  color: white;
}

.btn-green {
  background-color: #2ecc71;
}

.btn-whatsapp {
  background-color: #25d366;
}

.note {
  text-align: center;
  margin-top: 25px;
  font-style: italic;
  color: #888;
}

.error {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background-color: #ffebeb;
  color: #c0392b;
  border-left: 5px solid #e74c3c;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}
