* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #242424;
  background: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.privacy-header {
  position: relative;
  padding: 24px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.privacy-header nav,
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 20px;
}

.menu-toggle,
#mobile-nav {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.privacy-header img {
  width: min(280px, 75vw);
  height: auto;
}

.privacy-main {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 64px;
}

h1,
h2 {
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
}

h2 {
  margin-top: 36px;
  font-size: 1.35rem;
}

a {
  color: #165b73;
}

a:focus-visible {
  outline: 3px solid #f5a800;
  outline-offset: 3px;
}

footer {
  padding: 24px;
  border-top: 1px solid #ddd;
}

@media (max-width: 700px) {
  .menu-toggle {
    display: block;
    margin: 0 0 16px auto;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #777;
  }

  #primary-nav {
    display: none;
  }

  #mobile-nav:not([hidden]) {
    display: grid;
  }
}
