.process-section {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  gap: 60px;
}

.process-steps {
  flex: 1 1 50%;
}

.step {
  margin-bottom: 50vh;
}

.step h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.step .step-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 15px;
  border-radius: 20px;
  background-color: #ececec;
  color: #444;
}

.step p {
  max-width: 650px;
  font-size: 1.1rem;
  color: #555;
}

.process-image {
  flex: 1 1 50%;
  position: relative;
}

.image-wrapper {
  position: sticky;
  top: 15vh;
  width: 100%;
  max-width: 550px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.sticky-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease, transform 1s ease;
}

.sticky-image.hidden {
  opacity: 0;
  transform: scale(1.02);
}

.mobile-image {
  display: none;
  width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .process-section {
      flex-direction: column;
  }

  .process-image.desktop-only {
      display: none;
  }

  .mobile-image {
      display: block;
  }

  .step h2 {
      font-size: 2rem;
  }

  .step p {
      font-size: 1rem;
  }
}
