#stepsProcess {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 30px;
  font-family: 'Heebo', sans-serif;
}

#stepsProcess h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(30px, 3vw, 32px);
  font-weight: 700;
}

#stepsProcess h3 {
  font-weight: 700;
}

#stepsProcess p {
  font-weight: 400;
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #ddd;
}

.timeline-step {
  position: relative;
  margin-bottom: 50px;
  padding-left: 70px;
  opacity: 0; /* מתחיל מוסתר */
  transform: translateX(50px); /* מתחיל מימין */
  transition: all 0.6s ease-out;
}

.timeline-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-icon {
  position: absolute;
  left: 15px;
  top: 0;
  width: 40px;
  height: 40px;
  background-image: linear-gradient(to right, rgb(0, 25, 30), rgb(0, 108, 124));
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 1em;
}

.timeline-step h3 {
  margin: 0 0 10px 0;
}

.timeline-step p {
  margin: 0;
  color: #555;
}

#ctaB {
    display: block;
    text-align: center;
    border: none;
    border-radius: 50px;
    padding: 20px 150px;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    cursor: pointer;
    color: white;
    margin-bottom: 20px;
    background-image: linear-gradient(to right, rgb(0, 160, 184), rgb(0, 181, 209));
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

#ctaB:hover {
    background-image: linear-gradient(to right, rgb(0, 181, 209), rgb(0, 160, 184));
    transform: scale(1.07) translateY(-2px);
   }

    @media (max-width: 768px) {
      #ctaB {
        padding: 20px 20px;
     }
   }
