/* Impressum Styling */
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

main h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

main h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--green-dark);
  border-bottom: 2px solid var(--green-light);
  padding-bottom: 0.3rem;
}

main address, 
main p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

main address {
  font-style: normal;
}

main a {
  color: var(--accent);
  text-decoration: none;
}

main a:hover {
  text-decoration: underline;
}

main strong {
  color: var(--green-dark);
}