.process-section {
  position: relative;
  padding: 1rem 0rem;
  background: #ffffff;
  color:  #012852; 
  border: none;        /* remove any border */
  box-shadow: none;    /* remove any shadow */
  margin:0;
}

.process-header {
  position: relative;
  max-width: 800px;
  margin-bottom: 3rem;
  z-index: 1;
  color:  #012852; 
  border: none;        /* remove any border */
  box-shadow: none;    /* remove any shadow */
}

.process-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.process-header p {
  color: #555;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.process-step {
  border-left: 3px solid #0056d2;
  padding-left: 1.25rem;
}

.step-number {
  display: inline-block;
  font-weight: 700;
  color: #0056d2;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  margin: 0.25rem 0 0.5rem;
}

.process-step p {
  color: #444;
}

.process-cta {
  margin-top: 3rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: #0056d2;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.btn-primary:hover {
  background: #003bb5;
}

