#ecommerce-business {
    padding: 100px 5vw;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
  }
  
  .ecommerce-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .ecommerce-text {
    flex: 1 1 55%;
  }
  
  .ecommerce-text h2 {
    font-size: 2.6rem;
    color: #00224D;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .ecommerce-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
  }
  
  .ecommerce-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
    font-style: italic;
  }
  
  .ecommerce-list {
    margin-bottom: 30px;
    padding-left: 20px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
  }
  
  .ecommerce-list li {
    margin-bottom: 10px;
  }
  
  .ecommerce-image {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .ecommerce-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.0);
  }
  
  @media (max-width: 992px) {
    .ecommerce-wrapper {
      flex-direction: column;
    }
  
    .ecommerce-text,
    .ecommerce-image {
      flex: 1 1 100%;
      text-align: left;
    }
  
    .ecommerce-image img {
      max-width: 80%;
      margin-top: 20px;
    }
  }
  