/* Start custom CSS for html, class: .elementor-element-c89eec2 */.process-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
  text-align: center;
}

.process-step {
  flex: 1;
  min-width: 220px;
}

.process-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  background: #7d4e93; /* primary purple */
  color: #fff;
  font-size: 50px;
}

.process-circle.light {
  background: #b899b8; /* light purple */
}

.process-circle.outline {
  background: transparent;
  border: 2px solid #cfcfcf;
  color: #555;
}

.process-text {
  font-size: 18px;
  color: #333;
  line-height: 1.4;
  font-weight: 500;
}

.arrow {
  font-size: 40px;
  color: #555;
}

/* ---- MOBILE RESPONSIVE ---- */
@media(max-width: 768px) {
  .process-wrapper {
    flex-direction: column;
  }
  .arrow {
    transform: rotate(90deg);
    margin: 15px 0;
  }
}/* End custom CSS */