/* Legal/Imprint/Privacy Page Style for Henry Lok */
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
header {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem 1rem;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 12px 0 #bbb;
}
header h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0.2em 0 0.1em 0;
  color: #222;
  letter-spacing: 0.01em;
}
header p {
  color: #555;
  font-size: 1.1rem;
  margin: 0.2em 0 0 0;
}
main {
  max-width: 600px;
  margin: 2.5rem auto 2rem auto;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px 0 #e5e7eb;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
}
main h2 {
  color: #222;
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
main ul {
  margin: 0.5em 0 1.2em 1.2em;
  padding: 0 0 0 1.2em;
}
main li {
  margin-bottom: 0.3em;
  font-size: 1em;
}
main p {
  margin: 0.7em 0;
  line-height: 1.7;
}
a {
  color: #222;
  text-decoration: underline dotted;
  transition: color 0.2s;
}
a:hover {
  color: #555;
  text-decoration: underline solid;
}
footer {
  text-align: center;
  color: #555;
  font-size: 1rem;
  margin: 2.5rem 0 1.2rem 0;
}
footer a {
  color: #222;
  margin: 0 0.3em;
  text-decoration: underline dotted;
  font-weight: 500;
}
footer a:hover {
  color: #555;
  text-decoration: underline solid;
}
@media (max-width: 600px) {
  main {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  header {
    padding: 1.5rem 0.5rem 1rem 0.5rem;
  }
  .logo {
    width: 48px;
    height: 48px;
  }
  main h2 {
    font-size: 1.1rem;
  }
}
