.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }

  .step-card {
    background: #f2eaf7;
    flex: 1 1 100%;
    padding: 30px 30px 30px 0px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    /* text-align: center; */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }

  .step-card::before {
    content: attr(data-step);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #90099f;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position: absolute;
    /* top: -25px; */
    /* left: 50%; */
    transform: translateX(-50%);
  }

  .step-card h2 {
    margin-top: 30px;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #a60faf;
    margin-left: 60px;
  }

  .step-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-left: 60px;
  }

  .cta {
    text-align: center;
    margin-top: 50px;
  }

  .cta a {
    text-decoration: none;
    background: #1a73e8;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .cta a:hover {
    background: #155ab6;
    transform: translateY(-3px);
  }

  /* Responsive */
  @media (max-width: 992px) {
    .step-card {
      flex: 1 1 45%;
    }
  }

  @media (max-width: 768px) {
    .steps {
      flex-direction: column;
      align-items: center;
    }
    .step-card {
      flex: 1 1 100%;
    }
  }
