.faq-list {
  list-style-type: none;
  counter-reset: faq-counter;
  padding-left: 0;
}

.faq-list li {
  counter-increment: faq-counter;
  padding: 15px;
  margin-bottom: 10px;
  background: #f8f9fa;
  border-left: 4px solid #007bff;
  position: relative;
  padding-left: 60px;
}

.faq-list li::before {
  content: "Q" counter(faq-counter);
  position: absolute;
  left: 15px;
  top: 15px;
  background: #007bff;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
}

.steps-list {
  list-style-type: none;
  counter-reset: step-counter;
  padding-left: 0;
}

.steps-list li {
  counter-increment: step-counter;
  padding: 20px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #e3f2fd 0%, #f3e5f5 100%);
  border-radius: 8px;
  position: relative;
  padding-left: 80px;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background: linear-gradient(45deg, #2196f3, #9c27b0);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}