 .box-wrapper22 {
            display: flex;
            flex-wrap: wrap; /* Zeilenumbruch */
            gap: 25px;
            width: 100%;
            max-width: 1300px;
            justify-content: center;
        }

        .box22 {
            width: 270px;
            height: auto;
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none; /* Entfernt den Standard-Link-Stil */
        }

        .box22 img {
            width: 270px; /* Bild passt sich an die Breite der Box an */
            height: 270px;
            border-radius: 8px 8px 0 0;
            object-fit: cover;
        }

        .box22 .content22 {
            padding: 10px;
        }

        .box22 .content22 h3 {
            margin: 0;
            font-size: 20px;
            color: #333;
            padding: 10px;
        }

        /* Hover-Effekt für die Boxen */
        .box22:hover {
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
            transform: scale(1.05);
        }

        /* Responsive Design für kleinere Bildschirme */
        