.responsive-img {
width: 100%; /* Make sure the image takes full width */
height: auto; /* Maintain aspect ratio */
}
@media (max-width: 767px) {
.responsive-img {
content: url('/media/DescMo.webp'); /* New image for mobile screens */
width: 100%; /* New image for mobile screens */
}
}