:root{
  --brand-dark:#106070;
  --brand-teal:#10A8A8;
  --bg:#F7FAFA;
  --text:#102A2E;
  --muted:#5B6B70;
  --card:#FFFFFF;
  --border:#E3E9EA;
  --logo-bg:#EEF2F3;
}

*{box-sizing:border-box}

html, body{
  height:100%;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* CENTER EVERYTHING */
.page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:80px 24px; /* LARGE margins */
}

/* LOGO */
.logo{
  background:var(--logo-bg);
  border-radius:14px;
  padding:10px;
  margin-bottom:32px;
}
.logo img{
  width:170px;     
  height:170px;
  display:block;
}

/* CONTENT */
.content{
  max-width:420px;
  text-align:center;
}
.content h1{
  margin:0 0 12px;
  font-size:24px;
  font-weight:600;
}
.content p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
}
