         /* Responsive Bild-Container */
         .image-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
            justify-content: center;
         }
         
         .image-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
         }
         
         .image-item:hover {
            transform: scale(1.05);
         }
         
         .image-item img {
            width: 100%;
            height: 200px; /* Feste Höhe für alle Bilder */
            object-fit: cover; /* Bilder werden proportional beschnitten */
            display: block;
         }
         
         .image-number {
            position: absolute;
            top: 5px;
            left: 5px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
         }
         
         /* Responsive Größen */
         @media (min-width: 1200px) {
            .image-item {
               flex: 0 0 calc(20% - 8px); /* 5 Bilder pro Reihe auf großen Bildschirmen */
            }
         }
         
         @media (min-width: 768px) and (max-width: 1199px) {
            .image-item {
               flex: 0 0 calc(25% - 8px); /* 4 Bilder pro Reihe auf mittleren Bildschirmen */
            }
         }
         
         @media (min-width: 480px) and (max-width: 767px) {
            .image-item {
               flex: 0 0 calc(50% - 5px); /* 2 Bilder pro Reihe auf kleinen Bildschirmen */
            }
         }
         
         @media (max-width: 479px) {
            .image-item {
               flex: 0 0 100%; /* 1 Bild pro Reihe auf sehr kleinen Bildschirmen */
            }
            .image-item img {
               height: 250px; /* Etwas höher auf mobilen Geräten */
            }
         }
         
         /* Zusätzliche responsive Styles */
         #content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
         }
         
         h1, h2 {
            text-align: center;
         }
         
         @media (max-width: 768px) {
            h1 {
               font-size: 1.5em;
            }
            h2 {
               font-size: 1.2em;
            }
            p {
               font-size: 14px;
               line-height: 1.5;
            }
         }
