:root {
  color: #0b1f3a;
  background: #f4f8fa;
  font: 16px/1.65 Arial, sans-serif;
  text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
}

a {
  color: #087b80;
}

a:focus-visible {
  outline: 3px solid #087b80;
  outline-offset: 3px;
}

header,
main,
footer {
  width: min(860px, calc(100% - 40px));
  margin-inline: auto;
}

header {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cad8e2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0b1f3a;
  text-decoration: none;
}

.brand img {
  width: 96px;
  height: auto;
}

.brand-mark {
  position: relative;
  width: 20px;
  height: 18px;
  flex: 0 0 auto;
}

.brand-mark i {
  position: absolute;
  width: 13px;
  height: 7px;
  display: block;
  background: #087b80;
  transform: skewX(-32deg);
}

.brand-mark i:first-child {
  top: 3px;
  left: 0;
  background: #153f70;
  transform: skewX(-32deg) rotate(60deg);
}

.brand-mark i:last-child {
  right: 0;
  bottom: 2px;
}

.back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 700;
}

main {
  margin-block: clamp(48px, 8vw, 84px);
  padding: clamp(28px, 6vw, 60px);
  border: 1px solid #cad8e2;
  background: #fff;
  box-shadow: 0 20px 60px rgba(11, 31, 58, .08);
}

.eyebrow {
  margin: 0 0 10px;
  color: #087b80;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 7vw, 58px);
  line-height: 1.05;
}

h2 {
  margin: 36px 0 8px;
  font-size: 23px;
  line-height: 1.25;
}

p,
li {
  color: #41566e;
}

li + li {
  margin-top: 8px;
}

.updated {
  margin-bottom: 34px;
  color: #6a7d90;
  font-size: 14px;
}

footer {
  padding: 0 0 40px;
  color: #6a7d90;
  font-size: 13px;
}

@media (max-width: 540px) {
  header,
  main,
  footer {
    width: min(100% - 24px, 860px);
  }

  main {
    padding: 24px;
  }

  .brand img {
    width: 84px;
  }
}
