
    .flow-container {
      display: flex;
      flex-direction: column;
      gap: 80px;
      align-items: center;
    }

    .flow-row {
      display: flex;
      justify-content: center;
      gap: 120px;
      margin-left: -130px;
      margin-top: -50px;
    }

    .step {
      opacity: 0;
      transform: scale(0.5);
      transition: all 0.6s ease-out;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .step.show {
      opacity: 1;
      transform: scale(1);
    }

    .step img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
    }

    .step p {
      margin-top: 10px;
      font-size: 16px;
      color: #048646;
      font-weight: bold;
    }