.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    flex: 1 1 300px;
    max-width: 100%;
    margin-bottom: 2rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.02);
}

.gallery-item p {
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
}
