        .image-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            padding: 30px;
            background-color: #f9f9f9;
        }

        .image-gallery a {
            width: calc(25% - 15px);
            display: block;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .image-gallery a:hover {
            transform: scale(1.05);
        }

        .image-gallery img {
            width: 100%;
            height: auto;
            display: block;
        }