* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f2f2f2;
  color: #333;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
section {
  padding-inline: 20px;
}
.logo-container {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.maintenance-container {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.maintenance-container h1 {
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #e7873b;
}

.maintenance-container p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .maintenance-container h1 {
    font-size: 1rem;
  }
}
