* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #10529F;
  color: #fff;
}

.topbar {
  background: #0b3f75;
  padding: 6px 40px;
}

.header-empty {
  height: 80px;
  background: rgba(13, 71, 138, 0.85);
  backdrop-filter: blur(10px);
}

.maintenance-container {
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.maintenance-logo {
  width: 350px;
  height: auto;
  margin-bottom: 10px;
}

.maintenance-text {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

footer {
  background: #0b3f75;
  color: #fff;
  text-align: center;
  padding: 30px;
  font-size: 13px;
}

@media(max-width: 900px) {
  .maintenance-logo {
    width: 150px;
  }

  .maintenance-text {
    font-size: 22px;
  }
}