.image-container {
    width: 50%;  /* or another default width */
}

.image-container img {
    width: 100%;  /* Ensures the image is responsive */
    height: auto;  /* Maintains the image's aspect ratio */
}

@media (max-width: 768px) {
    .image-container {
        width: 100%;  /* Full width for smaller screens */
    }
}