:root{
  --bg:#ffffff;
  --text:#222;
  --muted:#6b6b6b;
  --accent:#000;
  --container-width:980px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px 16px;
}
.card{
  width:100%;
  max-width:var(--container-width);
  border:2px solid #e6e6e6;
  padding:40px 60px;
  text-align:center;
}
.logo{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-bottom:18px;
  flex-direction:column;
}
.logo img{height:56px; width:auto}
.slogan{
  font-size:18px;
  letter-spacing:6px;
  color:var(--muted);
  text-transform:lowercase;
}
.top-links{
  display:flex;
  justify-content:center;
  gap:120px;
  margin:28px 0 32px 0;
  font-weight:700;
  font-size:22px;
}
.maintenance{
  font-weight:800;
  font-size:30px;
  margin:18px 0 26px 0;
  letter-spacing:1.5px;
}
.contact{
  font-weight:300;
  color:var(--muted);
  line-height:1.9;
  font-size:20px;
  max-width:780px;
  margin:0 auto 34px auto;
}
.contact .contact-line{font-weight:400; color:var(--text)}
.address{
  font-weight:700;
  text-align: center;
  margin-top:18px;
  font-size:18px;
}
.address strong{font-weight:800}
@media (max-width:700px){
  .top-links{gap:30px; flex-direction:row; font-size:18px}
  .logo img{height:46px}
  .card{padding:22px}
  .maintenance{font-size:22px}
  .contact{font-size:16px}
  .address{font-size:15px;text-align:center}
}
