/* Intro Section */
.processIntro {
  padding: 4rem 1rem 2rem;
  text-align: center;
  background: #f8f8f8;
}
.processIntro h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.processIntro p {
  font-size: 1.1rem;
  color: #444;
}

/* Steps Section */
.stepsSection {
  background: #fff;
  padding: 3rem 1rem;
}
.stepsGrid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.step {
  background: #fafafa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #27ae60;
}
.step h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.step p {
  color: #555;
  line-height: 1.6;
}

/* CTA Section */
.ctaSection {
  background: #27ae60;
  color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}
.ctaSection h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.ctaSection p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}


/* Responsive Grid */
@media (min-width: 768px) {
  .stepsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .stepsGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
