.steps-table-container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30, 91, 168, 0.08);
  padding: 2.5rem 1.5rem 2.2rem 1.5rem;
  margin: 2.5rem 0;
  border: 2px solid #1e5ba8;
  overflow-x: auto;
}

.steps-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30, 91, 168, 0.06);
}

.steps-table th,
.steps-table td {
  border: 1px solid #dbeafe;
  padding: 1.1rem 1rem;
  text-align: left;
  font-size: 1.05rem;
}

.steps-table th {
  background: linear-gradient(90deg, #1e5ba8 0%, #23394c 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 2px solid #8dc73f;
}

.steps-table tr:nth-child(even) td {
  background: #eaf4fb;
}

.steps-table tr:hover td {
  background: #dff9b5;
  transition: background 0.2s;
}

@media (max-width: 600px) {
  .steps-table-container {
    padding: 1rem 0.2rem;
  }
  .steps-table th,
  .steps-table td {
    padding: 0.7rem 0.4rem;
    font-size: 0.95rem;
  }
}
