    h1 {
      text-align: center;
      font-size: 40px;
      background-color: #f0f0f0;        /* Leicht grauer Hintergrund */
      padding: 5px;                    /* Etwas Abstand um den Text */
    }
    a {
      color: #007BFF;  /* Blau */
    }

    body {
      font-family: Arial, sans-serif;
      margin: 20px;
      line-height: 1.6;
    }

    .toggle-section {
      margin-bottom: 20px;
    }

    .toggle-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .toggle-content {
      display: none;
      margin-top: 10px;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 5px;
      background-color: #f9f9f9;
      position: relative;
    }

    .toggle-content.visible {
      display: block;
    }

    .toggle-more, .toggle-less {
      color: #007BFF;
      cursor: pointer;
      text-decoration: underline;
      font-size: 14px;
      margin: 0 5px;
    }

    .toggle-less {
      display: inline; /* "Weniger" wird am Ende eingeblendet */
    }

    .toggle-less.hidden {
      display: none; /* Standardmäßig versteckt */
    }
.button-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.button-link {
  text-decoration: none;
  background-color: #007BFF;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.button-link:hover {
  background-color: #0056b3;
}
