/* General reset and box sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrapper to center and size content responsively */
.maintenance-wrapper {
  width: 100%;
  max-width: 1000px;
  padding: 40px 20px;
  text-align: center;
}

/* Content container */
.content {
  background: white;
  padding: 60px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Logo styles */
.logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 30px;
}

/* Headline */
h1 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

/* Paragraph */
p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content {
    padding: 40px 20px;
  }

  h1 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  .logo {
    max-width: 150px;
  }
}
