body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #fffaf2;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 400px;
  text-align: center;
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.banner {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

h1 {
  color: #e67e22;
  margin: 0.5rem 0;
}

.tagline {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.menu h2 {
  margin-bottom: 0.5rem;
  color: #27ae60;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.menu li {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  text-decoration: none;
  padding: 1rem;
  background: #e67e22;
  color: white;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #cf711f;
}