.career-section {
  background: linear-gradient(105deg, #e9eefb 55%, #fff9ec 100%);
  padding: 4vw 6vw;
}

.career-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid: 4 columns per row */
.career-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards in each row */
  gap: 20px;
}

/* Step Cards */
.step {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px #b1bbd542;
  padding: 1.5rem;
  text-decoration: none;
  color: #25376d;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.step:hover {
  background: #e4eeff;
  transform: translateY(-5px);
  box-shadow: 0 6px 40px #b1bbd575;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 1rem;
  color: #333;
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 1024px) {
  .career-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .career-steps {
    grid-template-columns: 1fr;
  }
}
