/* Image Gallery Container */
.gallery {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 10px;
   padding: 20px;
   max-width: 1000px;
   margin: auto;
}

/* Gallery Images */
.gallery img {
   width: 100%;
   height: 200px;
   object-fit: cover;
   border-radius: 10px;
   transition: transform 0.3s ease-in-out;
}

.gallery img:hover {
   transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 600px) {
   .gallery {
       grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
   }
}
