/* Process Section Styles */

.process-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.process-title {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

.process-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f4d03f;
}

.process-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  text-align: center;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f4d03f;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #f4d03f;
  color: #1a1a1a;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.step-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 992px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .process-step {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .process-title {
    font-size: 32px;
  }
  
  .process-step {
    padding: 25px 15px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .step-title {
    font-size: 18px;
  }
}
