body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 40px;
  color: #333;
}
h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}
form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}
input,
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}
textarea {
  min-height: 80px;
  resize: vertical;
}
button {
  background: #0066cc;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}
button:hover {
  background: #004d99;
}
