        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 25px;
        }
        .service {
            background: #b3daff;
            padding: 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 20px;
	    border: 2px solid #b3daff;
            border-left: 8px solid #004080;
            box-sizing: border-box; /* Sicherstellen, dass Padding und Border berücksichtigt werden */
        }

	.service:hover {
	   border: 2px solid #004080;
	   border-left: 8px solid #004080;
        }
        .service img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
            flex-shrink: 0; /* Verhindert, dass das Bild schrumpft */
        }

