 body.verkauf {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-style: italic;
      font-weight: 500;
      color: #fff;
      background: var(--bg);
      line-height: 1.75;
    }

    main.container {
      max-width: 1000px;
      margin: 2rem auto;
      padding: 1.5rem;
      background: rgba(0,0,0,0.6);
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }

    h1, h2 {
      text-align: center;
      margin-bottom: 1rem;
    }

    .verkauf-bilder {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .verkauf-bilder img {
      max-width: 300px;
      border-radius: 10px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

   .verkauf-bilder img:hover {
     transform: scale(1.03);
     box-shadow: 0 0 12px rgba(255,255,255,0.35);
     filter: brightness(1.08);
   }

   .beschreibung {
     text-align: left;
     margin-bottom: 1.5rem;
    }

    .preis {
      text-align: center;
      font-weight: bold;
      font-size: 1.2em;
      color: var(--accent, #ffd700);
      margin-bottom: 1.5rem;
    }

    .verkauf-hinweis {
      text-align: center;
      font-size: 0.9em;
      color: #ccc;
      margin-top: 2rem;
    }
 