  .steps-section {
    padding: 0 20px;
    font-family: Arial, sans-serif;
    color: #333;
  }

  .steps-container {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .step-card {
    position: relative;
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
  }

  .step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .step-number {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0,0,0,0.05);
    z-index: 0;
  }

  .step-content {
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .step-content h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .step-content p {
    margin-top: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .step-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    align-self: center;
    white-space: nowrap;
  }

  .step-tag.green {
    background: #e0f5e8;
    color: #1b7f4d;
  }

  .step-tag.yellow {
    background: #ffebca;
    color: #f59e0b;
  }

  .step-tag.purple {
    background: #f5e4f7;
    color: #9a239a;
  }

  .step-tag.blue {
    background: #e0f2fe;
    color: #1e40af;

