.steps-box {
  width: 100%;
  text-align: center;
  padding: 15px;
  margin-bottom: 30px;
}

.steps-statement {
  padding-top: 1.5vw;
  padding-bottom: 1vw;
  font-size: 2.5vw;
  background: linear-gradient(45deg, #0000ff, #1e90ff, #00bfff, #87ceeb, #b0e0e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.steps {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.steps-item-container {
  flex: 1;
  background-color: #000000;
  margin: 10px;
  padding: 25px;
  height: 220px;
  width: calc(33.333% - 20px);
  text-align: center;
  border-radius: 110px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.steps-item-container:hover { transform: scale(1.05); }

.steps-item-header {
  font-size: 18px;
  font-weight: 600;
  padding-top: 10px;
  background: linear-gradient(45deg, #0000ff, #1e90ff, #00bfff, #87ceeb, #b0e0e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.steps-item {
  font-size: 15px;
  font-weight: 200;
  padding-top: 8px;
  color: white;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .steps-statement { font-size: 3.5vw; }
  .steps { flex-direction: column; align-items: stretch; }
  .steps-item-container {
    width: 100%;
    margin: 8px 0;
    height: 180px;
  }
}

@media (max-width: 576px) {
  .steps-statement { font-size: 4.5vw; }
  .steps-item { font-size: 13px; }
}
