<style>
.feature-item {
  padding: 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: white;
  border-left: 4px solid #007bff;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin: 0 auto;
}

.lead {
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: #555 !important;
}

.text-primary {
  color: #007bff !important;
}

.text-success {
  color: #28a745 !important;
}
</style>