.order-flow {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
}

.order-flow h2 {
  text-align: center;
  color: #0055a5;
  margin-bottom: 30px;
}

.steps {
  counter-reset: step-counter;
}

.step {
  display: flex;
  margin-bottom: 30px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  counter-increment: step-counter;
  width: 40px;
  height: 40px;
  background: #0055a5;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 2px 5px rgba(0, 85, 165, 0.4);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #003e7e;
}

.step-desc {
  font-size: 16px;
  line-height: 1.5em;
  color: #555;
}

@media (max-width: 600px) {
  .order-flow {
    padding: 20px 25px;
    margin: 10px;
  }

  .step {
    flex-direction: column;
  }

  .step-number {
    margin-bottom: 8px;
    margin-right: 0;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-desc {
    font-size: 14px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Roboto&display=swap");

.container-flow {
  max-width: 100%;
  background-color: #fff;
  border-radius: 16px;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7); */
  padding: 0rem;
  box-sizing: border-box;
}

ol.flow {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
  margin: 0 !important;
}

li.flow {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem 2rem 1.5rem 5.5rem;
  margin-bottom: 1.8rem;
  position: relative;
  box-shadow: inset 0 0 15px rgba(79, 195, 247, 0.3);
  transition: all 0.3s ease;
}

li.flow:hover {
  background: rgba(79, 195, 247, 0.35);
  box-shadow: 0 0 18px rgba(79, 195, 247, 0.7),
    inset 0 0 25px rgba(255, 255, 255, 0.5);
  transform: scale(1.03);
  cursor: default;
}

li.flow::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: #4fc3f7;
  color: #0f2027;
  width: 3rem;
  height: 3rem;
  text-align: center;
  line-height: 3rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(79, 195, 247, 0.7);
  transition: background 0.3s ease, color 0.3s ease;
  color: #fff;
}

li.flow:hover::before {
  background: #81d4fa;
  color: #fff;
  box-shadow: 0 6px 12px rgba(129, 212, 250, 0.9);
}

.step-title {
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  color: #57c1f1;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(129, 212, 250, 0.8);
}

p.flow {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgb(65, 105, 225);
  margin: 0;
}

a.flow:link,
a.flow:visited {
  color: #e99920;
}

a.flow:hover,
a.flow:active {
  color: rgb(255, 102, 0);
}

@media (max-width: 480px) {
  .container-flow {
    padding: 1.5rem;
  }

  li.flow {
    padding-left: 4.5rem;
  }

  li.flow::before {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 1.2rem;
    left: 1rem;
  }
}
