.process-section {
  width: 100%;
  padding: 90px 40px;
  background-color: #ffffff;
}

.process-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.process-label {
  display: block;
  font-family: "Asap Sharp", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #052d55;
  margin-bottom: 14px;
}

.process-heading {
  font-family: "Asap Sharp", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #12024D;
  margin: 0 0 12px 0;
}

.process-subheading {
  font-family: "Asap Sharp", sans-serif;
  font-size: 15px;
  color: #6b6b75;
  margin: 0 0 50px 0;
}

.process-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.process-row:last-child {
  margin-bottom: 0;
}

.process-step {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #052d55;
  color: white;
  font-family: "Asap Sharp", sans-serif;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-shrink: 0;
}

.process-line {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #d8dce3;
  z-index: 1;
}

.process-card {
  margin-top: 20px;
  background-color: #f7f8fa;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px 18px;
  width: 90%;
  text-align: left;
}

.process-card-title {
  font-family: "Asap Sharp", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #12024D;
  margin: 0 0 8px 0;
}

.process-card-desc {
  font-family: "Asap Sharp", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6b6b75;
  line-height: 1.6;
  margin: 0;
}

