.how-it-works {
  background: white;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.step {
  text-align: center;
  position: relative;
  padding: 30px 20px;
  border-radius: 15px;
  transition: var(--transition);
}

.step:hover {
  background: var(--background-light);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  color: white;
  font-size: 2rem;
  transition: var(--transition);
}

.step:hover .step-icon {
  transform: scale(1.1) rotate(10deg);
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-description {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.step-details {
  color: var(--text-light);
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 50px;
  border-radius: 20px;
  color: white;
  margin-top: 40px;
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
  color: white;
  border-color: white;
}

.cta-buttons .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .steps-container {
    gap: 50px;
  }
  
  .step {
    padding: 40px 20px 20px;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 200px;
  }
}