.container {
      display: flex;
      justify-content: space-between;
      /*  height: 200px; Adjust the height as   needed */
      background-color: #fff;
     padding:20px;
     box-shadow:2px 2px 4px #aaa; 
     background:linear-gradient(to right,  #f0cdd6 1%,#ffffff 29%,#ffffff 68%,#d0f1f9  99%); 
     font-size:1.1em;
     border-radius:10px;
    }

    .text-container {
      text-align: center;
      margin: 0px;
      flex:1;
    }

    .icon-left, .icon-right {
      display: flex;
      flex:0 0 50px;
      flex-direction: column;
      margin: 0px; /* Adjust margin as needed */
      justify-content: center;
    }

    .icon {
      margin: 0 10px; /* Adjust the margin as needed */
    }

    @media screen and (max-width: 768px) {
      .icon-left, .icon-right {
        margin-bottom: 10px;
      }
    }