body {
      margin: 0;
      font-family: Arial, sans-serif;
      color: rgb(75, 38, 0);
      background-color: rgb(239, 229, 209)
    }

    header img {
      width: 100%;
      height: auto;
      display: block;
    }

    header p {
      text-align: center;
    }

    h1 {
      text-align: center;
      margin: 1.5rem 0;
      font-size: 3rem; /* deutlich größer */
      letter-spacing: 0.1em;
      font-weight: bold;
    }

    h3 {
      text-align: center;
      margin: 1.5rem 0;
    }

    .carousel {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      gap: 1rem;
      padding: 1rem;
    }

    .carousel img {
      width: 30%;
      min-width: 300px;
      height: auto;
      scroll-snap-align: center;
      border-radius: 8px;
    }

    .content-section {
      display: flex;
      align-items: center;
      padding: 2rem;
      gap: 2rem;
      border-radius: 8px;
    }

    .content-section:nth-child(even) {
      flex-direction: row-reverse;
    }

    .content-section:nth-of-type(1) {
      background-color: rgb(222, 212, 192);
    }
    
    .content-section:nth-of-type(2) {
      background-color: rgb(222, 212, 192);
    }
    
    .content-section:nth-of-type(3) {
      background-color: rgb(212, 202, 182);
    }

    .content-section:nth-of-type(4) {
      background-color: rgb(232, 222, 202);
    }

    .content-section img {
      width: 40%;
      height: auto;
      border-radius: 8px;
    }

    .content-section .text {
      flex: 1;
    }

    .fancy-list {
      list-style: disc inside;
      padding-left: 1rem;
      margin-top: 1rem;
      line-height: 1.6;
    }
    
    .fancy-list li {
      margin-bottom: 0.5rem;
    }

    .centered-image {
      display: flex;
      justify-content: center;
      padding: 2rem;
    }
    
    .centered-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    footer {
      background-color: #222;
      color: white;
      padding: 2rem;
      text-align: center;
    }

    footer h2 {
      text-align: center;
    }

    footer p {
      text-align: center;
    }

    footer a {
      color: #ddd;
      margin: 0 0.5rem;
      text-decoration: none;
    }

    footer a:hover {
      color: #fff;
    }

    address p {
      font-style: normal;
    }
