.logistics-process {
  background: #f4fbfd;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}


.heading .tag {
  background-color: #00a99d;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.heading h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0d2b52;
  margin-bottom: 10px;
}

.heading p {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-box {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 20px;
  flex: 1 1 280px;
  max-width: 330px;
  position: relative;
}

.step-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.step-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.step-number {
  position: absolute;
  bottom: -12px;
  left: 12px;
  background-color: #f16b32;
  color: white;
  width: 36px;
  height: 36px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-box h4 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #0d2b52;
}

.step-box p {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .heading h2 {
    font-size: 24px;
  }

  .step-box {
    max-width: 100%;
  }
}
