    :root { color-scheme: light dark; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      line-height: 1.55;
      margin: 0;
      padding: 0;
    }
    main {
      max-width: 860px;
      margin: 0 auto;
      padding: 32px 18px 56px;
    }
    header {
      margin-bottom: 22px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(127,127,127,.35);
    }
    h1 {
      font-size: 1.9rem;
      margin: 0 0 6px;
    }
    .meta {
      opacity: .8;
      margin: 0;
      font-weight: 600; /* Bessere Sichtbarkeit */
    }
    h2 {
      margin-top: 28px;
      font-size: 1.4rem; /* Leicht vergrößert für Hierarchie */
      color: #007AFF; /* Akzentfarbe für Struktur */
    }
    h3 {
      margin-top: 0;
      font-size: 1.1rem;
    }
    p, li {
      font-size: 1rem;
    }
    ul {
      padding-left: 1.2rem;
    }
    .card {
      border: 1px solid rgba(127,127,127,.35);
      border-radius: 12px;
      padding: 14px;
      margin-top: 12px;
      background: rgba(127,127,127,.06);
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
      margin-top: 12px;
    }
    .cta-container {
      text-align: center;
      margin-top: 30px;
    }
    footer {
      margin-top: 40px;
      padding-top: 14px;
      border-top: 1px solid rgba(127,127,127,.35);
      opacity: .85;
      font-size: .95rem;
      text-align: center;
    }
    /* Barrierefreiheit für Bilder */
    img {
      max-width: 200px;
      height: auto;
    }
      
    /* Container für die Galerie */
        .upmeter-grid {
            display: grid;
            /* Definiert Spalten, die mindestens 150px und maximal 1 Teil des Platzes groß sind */
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
            padding: 20px;
            background-color: #ffffff;
        }

        .gallery-card {
            display: flex;
            flex-direction: column;
            /* Sorgt dafür, dass das Element nicht breiter als das Bild wird */
            max-width: 100%; 
        }

        .image-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border: 1px solid #eee;
            /* Behält das Seitenverhältnis bei */
            aspect-ratio: auto; 
        }

        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            /* Verhindert Verzerrung */
            object-fit: cover; 
        }

        .caption {
            margin-top: 10px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            text-align: center;
        }
        