* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
}
body {
  color: #121212;
  background: #f2f2f2;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.legal-header {
  background: #ff0000;
  padding: 18px 16px;
  text-align: center;
  border-top: 5px solid #f72210;
}
.legal-header a {
  display: inline-block;
  width: 390px;
  max-width: 92vw;
}
.legal-header img {
  display: block;
  width: 100%;
  height: auto;
}
.legal-content {
  width: min(900px, calc(100% - 32px));
  margin: 28px auto;
  padding: 34px 40px;
  background: #fff;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.legal-content h1 {
  margin: 0 0 8px;
  font:
    700 38px/1.25 Georgia,
    serif;
}
.legal-content h2 {
  margin: 30px 0 8px;
  font-size: 23px;
  line-height: 1.35;
}
.legal-content p,
.legal-content li {
  font-size: 17px;
}
.legal-content ul {
  padding-left: 24px;
}
.legal-footer {
  margin-top: auto;
  padding: 24px 16px;
  background: #fff;
  text-align: center;
}
.legal-footer nav {
  margin-bottom: 8px;
}
a,
a:link,
a:visited,
a:hover,
a:active {
  color: #135e72;
}
.legal-footer a,
.legal-footer a:link,
.legal-footer a:visited,
.legal-footer a:hover,
.legal-footer a:active {
  color: #135e72;
  text-decoration: none;
}
@media (max-width: 600px) {
  .legal-content {
    width: 100%;
    margin: 0;
    padding: 26px 18px;
  }
  .legal-content h1 {
    font-size: 31px;
  }
}
