/* Maintain a consistent height but ensure images aren't distorted */
.slider-img {
    height: 550px;
    object-fit: cover; /* This crops the image instead of stretching it */
    width: 100%;
}

/* Make the height shorter on mobile devices so it fits the screen better */
@media (max-width: 768px) {
    .slider-img {
        height: 200px; 
    }
}