/* Elegant maintenance page styling */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f0f4f8, #d9e4ec);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: #ffffffcc;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 500px;
}

.icon {
  font-size: 60px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #2c3e50;
}

p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 25px;
}

footer {
  font-size: 0.9em;
  color: #777;
}