body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
  }

  h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
  }

  p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0.5rem auto;
    font-weight: 350;
  }

  .contact {
    margin-top: 1.5rem;
    font-size: 1rem;
  }

  a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: 0.2s;
  }

  a:hover {
    color: #555;
    border-bottom-color: #555;
  }

  .footer {
    padding-top: 10px;
    margin-top: 1rem;
    font-size: 0.5rem;
  }

  .footer-link {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: 0.2s;
  }

  .impressum {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0.5rem auto;
    font-weight: 350;
    text-align: left;
  }