 :root{
      --card-bg: #fff;
      --card-border: #e9e9e9;
      --card-border: #058686 !important;
      --shadow: 0 10px 30px rgba(0,0,0,.08);
      --radius: 10px;
      --overlap: 70px;      /* how much the card overlaps on desktop */
      --img-min-h: 280px;
    }

    .why-choose{
      padding: 60px 0;
      background: #fff;
    }

    /* image box */
    .media-box{
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      min-height: var(--img-min-h);
      background: #f3f3f3;
    }
    .media-box img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* text card */
    .overlap-card{
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 22px;
      position: relative;
      z-index: 2;
    }

    /* DESKTOP overlap (>= lg) */
    @media (min-width: 992px){
      .overlap-right{
        margin-left: calc(var(--overlap) * -1);
      }
      .overlap-left{
        margin-right: calc(var(--overlap) * -1);
      }

      /* slightly taller on desktop */
      .media-box{ min-height: 360px; }
    }

    /* MOBILE/TABLET: remove overlap spacing so it stacks cleanly */
    @media (max-width: 991.98px){
      .overlap-right, .overlap-left{
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 16px; /* card comes below image */
      }
    }

    /* simple list styling like your screenshot */
    .overlap-card h5 {
        font-weight: 550 !important;
    }
    .overlap-card ul{
      margin: 12px 0 0;
      padding-left: 18px;
    }
    .overlap-card li{
      margin-bottom: 8px;
      line-height: 1.5;
    }

    .section-title{
      font-weight: 500;
      text-align: center;
      margin-bottom: 34px;
    }