
.container.cls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    max-width: 1100px;
    margin-top: 20px;
  }
  .container {
    margin-top: 20px;

  }

  .cards {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
  }

  .iconss {
    background-color: #0f9347;
    color: white;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
  }

  .iconss i {
    font-size: 24px;
   
   
  }

  .contentss {
    color: #212529;
  }

  .titless {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
    margin-top: 8px;
    text-align: center;
  }

  .phone-numberss {
    font-size: 14px;
    text-align: center;
  }

  .phone-numberss span {
    margin-right: 12px;
  }

  /* Responsive behavior */
  @media (max-width: 768px) {
    .container.cls {
      flex-direction: column;
      align-items: center;
    }
  }