.img-container img {
    max-width: 100%; /* Ensures the image doesn't exceed its container's width */
    height: auto;    /* Maintains the image's aspect ratio */
    display: block;  /* Helps with centering and layout issues */
    margin: 0 auto;  /* Centers the image if it's smaller than the container width */
}
