/* For desktop view */
    @media (min-width: 768px) {
      .responsive-image {
        max-width: 100%;
        /* Ensure image doesn't exceed container width */
      }

      .image1 {
        width: 50%;
      }

    }

    /* For mobile view */
    @media (max-width: 767px) {
      .responsive-image {
        width: 100%;
        /* Take full width of container */
      }
    }