* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #F47A20, #FFFAF1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

h1 {
  margin-bottom: 1rem;
  color: #F47A20;
}

p {
  color: #444;
  margin-top: 0.5rem;
}
