:root {
  --margin-top: 4em;
}

body {
  background-color: #c8cacb;
  font-family: sans-serif;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.header {
  background-color: #041536;
  color: white;
  padding: 1ch 1em;
  display: flex;
  gap: 1em;

  a {
    color: inherit;
    text-decoration: none;

    &:hover {
      text-decoration: underline;
    }
  }

  img.icon {
    width: 2.5ch;
  }
}

.ca {
  display: flex;
  justify-content: center;
  margin-top: var(--margin-top);

  img {
    max-height: 300px;
  }
}

.header {
  position: fixed;
  width: 100%;
}

.privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: var(--margin-top) auto 0;
  max-width: 800px;

  img.logo {
    width: 10ch;
    float: right;
    margin-left: 1ch;
  }

  h1 {
    font-size: 2em;
    color: #222;
    text-align: center;
    margin-top: 0;
  }

  h2 {
    font-size: 1.5em;
    margin-top: 20px;
    color: #444;
  }

  h3 {
    font-size: 1.2em;
    margin-top: 15px;
  }

  p,
  ul {
    margin: 10px 0;
  }

  ul {
    padding-left: 20px;
  }

  ul li {
    list-style-type: disc;
  }
}


.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #092a4f;
  color: whitesmoke;
  font-size: 10pt;
  margin-top: 1em;

  p.office {
    padding: 1em 3em;
    line-height: 1.5em;
  }

  p.copy {
    text-align: center;
    background-color: #041536;
    padding: 1em;
  }

  p {
    margin: 0;
    padding: 0.5ch;

    a {
      color: unset;
      text-decoration: none;
    }
  }
}