.working-process {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.working-process h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 90px;
}

.process-card {
  text-align: center;
  position: relative;
}

.process-card img {
  width: 250px;
  height: 250px;
  margin-bottom: 20px;
}

.process-step {
  position: absolute;
  top: calc(-3rem);
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0056d2;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.process-line {
  position: absolute;
  top: calc(-1.5rem);
  left: 0;
  width: 100%;
  height: 2px;
  border-top: 2px dashed #e0e0e0;
  z-index: 1;
}

.process-content {
  margin-top: 0px; /* Space between dashed line and content */
}

.process-card h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1d1d1d;
}

.process-card p {
  font-size: 0.9rem;
  color: #555555;
}

.process-wrapper {
  position: relative;
  margin-top: 40px;
}

@media (max-width: 426px) {
  .process-step {
    top: -10% !important;
  }
}
@media (max-width: 768px) {
  .process-line {
    display: none;
  }

  .process-card {
    flex: 0 0 calc(50% - 10px); /* 2 columns per row */
    margin-bottom: 30px;
  }
  .process-step {
    top: -8%;
  }
  .process-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
  }
}
