body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
}

.hero {
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
  url('https://images.pexels.com/photos/5233291/pexels-photo-5233291.jpeg') center/cover;
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.container {
  max-width: 600px;
  margin: 20px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
}

input, select, button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  font-size: 16px;
}

.price {
  font-size: 2rem;
  text-align: center;
  margin: 20px 0;
}

.urgency {
  padding: 12px;
  text-align: center;
  color: white;
  font-weight: bold;
  background: #333;
  border-radius: 5px;
}

.success {
  display: none;
  background: #28a745;
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
}

button {
  background: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #0056b3;
}