* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  background: #fff;
}

/* Overlay wrapper */
.overlay {
  min-height: 100vh;
  width: 100%;
  position: relative;
  padding: 20px;
}

/* Logo top-left */
.logo {
  position: absolute;
  top: 20px;
  left: 30px;
}
.logo img {
  width: 100px;
  height: auto;
}

/* Container flex */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  padding-top: 60px; /* space for logo */
}

/* Maintenance image */
.maint-img img {
  width: 500px;
  width: 100%;
  height: auto;
}

/* Message text */
.message {
  max-width: 500px;
  color: #333;
  text-align: left;
}

.message h1 {
  color: #2f5318;
  margin-bottom: 20px;
  font-size: 2rem;
}

.message p {
  font-size: 18px;
  line-height: 1.6;
}

/* Responsive - stack on small/medium */
@media (max-width: 1023px) {
  .container {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  .message {
    text-align: center;
  }
  .maint-img img {
    max-width: 300px;
  }
}

@media (max-width: 639px) {
  .message p {
    font-size: 16px;
    line-height: 1.4;
  }
  .logo img {
    max-width: 140px;
  }
}
