body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #FF7E5F, #FEB47B);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 40px 10px;
}

.container {
  background: #fff;
  color: #333;
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

h1, h2 {
  text-align: center;
  color: #FF7E5F;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

form input, form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

form button {
  background: #FF7E5F;
  border: none;
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #E46C4E;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  background: #f7f7f7;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  border-left: 4px solid #FF7E5F;
}

strong {
  color: #FF7E5F;
}