.container1 {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      padding: 20px;
      justify-content: center;
    }

    .card1 {
      border: 2px solid #000;
      padding: 20px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 180px;
      min-width: 150px;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .card1:hover {
      transform: scale(1.05);
    }

    .card1.green1 {
      border-color: green;
    }

    .label1 {
      font-size: 18px;
    }

    .circle1 {
      background-color: #005B7F;
      color: white;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 16px;
    }

    .green1 .circle1 {
      background-color: #4CAF50;
    }

    @media screen and (max-width: 500px) {
      .card1 {
        width: 100%;
        justify-content: space-around;
      }
    }