.image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;

    margin: 0 0 20px;
}

.image-gallery h3 {
    margin-top: 0;
}

.image-gallery a img {
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.image-gallery a img:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.image-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
}