.process-section {
  padding: 90px 20px;
  background: #f6f7f9;
  color: #0f1115;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.process-title {
  font-size: 34px;
  margin-bottom: 10px;
}

.process-subtitle {
  font-size: 16px;
  color: #5f6470;
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 36px 28px;
  border: 1px solid #e4e6eb;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.process-step {
  font-size: 13px;
  font-weight: 600;
  color: #7b8190;
  letter-spacing: 1px;
}

.process-card h3 {
  font-size: 20px;
  margin: 10px 0 12px;
}

.process-card p {
  font-size: 15px;
  color: #5f6470;
  line-height: 1.6;
}

