body {
  font-family: Arial, sans-serif;
  background-color: #e60d0d;
  margin: 0;
  padding: 0;
}
.order-section {
  max-width: 500px;
  background: #ffffff;
  margin: 50px auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.order-section h2 {
  text-align: center;
  color: #e67e22;
}
.order-section p {
  text-align: center;
  color: #555;
}
.order-form {
  display: flex;
  flex-direction: column;
}
.order-form label {
  margin-top: 10px;
  font-weight: bold;
  color: #444;
}
.order-form input,
.order-form textarea,
.order-form select {
  margin-top: 5px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}
.order-form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #e67e22;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}
.order-form button:hover {
  background-color: #d35400;
}