


.content-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 0.75rem;
}

.content-card > p {
  font-size: 15px;
  color: #555e7a;
  line-height: 1.7;
  margin: 0 0 2rem;
}

/* ── Steps Grid ── */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

/* ── Single Step Card ── */
.step {
  background: #f7f9fc;
  border: 1px solid #e4e8f0;
  border-radius: 14px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

/* ── Step Number Badge ── */
.step > span {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1a73e8;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── Icon Circle ── */
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a73e8;
  flex-shrink: 0;
  margin:0 auto
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

/* ── Step Text ── */
.step > p {
  font-size: 13.5px;
  color: #444d66;
  line-height: 1.6;
  margin: 0;
}

/* Step title (bold part before colon) — agar alag <strong> use kar rahe ho */
.step strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
}

/* ── Hover Effect ── */
.step:hover {
  border-color: #a8c4f8;
  background: #eef4ff;
  transition: all 0.2s ease;
}

/* ── Responsive: mobile ── */
@media (max-width: 480px) {
  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .content-card {
    padding: 1.25rem;
  }
}
