/* ==================== PROCESS STEPS SECTION ==================== */
.process-section {
  background: #f7f7f7;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(6, 83, 159, 0.2);
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step .step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.process-step .step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .process-step {
    padding: 20px 15px;
  }

  .process-step .step-title {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .process-section {
    padding: 60px 0;
  }

  .process-step .step-number {
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin: 0 auto 15px;
  }
}

