/* Container */
.work-steps {
  background: #fdf4fd; /* soft pastel pink */
  padding: 60px 20px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Heading */
.work-steps__heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 48px;
  color: #5032db; /* pastel purple heading for contrast */
}

/* Individual Steps */
.work-steps__item {
  width: 100%;
  max-width: 640px; /* 🔧 fix width constraint */
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #e7d9fd; /* pastel purple */
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(80, 50, 219, 0.15);
  border-left: 4px solid #a57cf8;
  text-align: left;
  transition: transform 0.3s ease;
}

.work-steps__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(80, 50, 219, 0.25);
}

.work-steps__item img {
  width: 36px;
  height: 36px;
  margin-top: 4px;
}

.work-steps__item p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #5032db;
}

.work-steps__item span {
  color: #3c0fa1;
  font-weight: 600;
}

/* Button */
.work-steps__button {
  margin-top: 40px;
  padding: 16px 32px;
  background-color: #5032db;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(80, 50, 219, 0.2);
}

.work-steps__button:hover {
  background-color: #3c0fa1;
}

/* Responsive */
@media (max-width: 600px) {
  .work-steps {
    padding: 10px 16px;
  }

  .work-steps__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%; /* responsive full width */
    padding: 16px 20px;
  }

  .work-steps__item img {
    width: 30px;
    height: 30px;
    margin-top: 0;
  }

  .work-steps__item p {
    font-size: 1rem;
  }

  .work-steps__button {
    width: 100%;
    font-size: 1rem;
  }
}
