<style>
  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f0fdf4; /* sehr helles Grün */
    color: #2e3d2f; /* dunkles, natürliches Grün für Text */
    text-align: center;
    padding: 50px;
  }

  .container {
    max-width: 600px;
    margin: auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(46, 125, 50, 0.1); /* grüner Schatten */
  }

  h1 {
    color: #388e3c; /* sattes, beruhigendes Grün */
    margin-bottom: 20px;
  }

  p {
    font-size: 1.2em;
    color: #4e684e;
    line-height: 1.6;
  }

  a {
    color: #2e7d32;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }
</style>

