.cover-bg {
  background-image: url('/web/images/background/bg-1.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 20px;
  z-index: 1;
}

.cover-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 2;
}

.dark-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
}


.steps-container {
  background-color: #f8f9fa;
  padding: 50px 20px;
  text-align: center;
}

.step-box {
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #007bff;
}


.step-box:hover {
  padding: 20px;
  background: white;
  color: #52A809;
  border-radius: 5px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}

.step-box i {
  font-size: 40px;
  /* color: #007bff; */
  margin-bottom: 10px;
}

.arrow-list {
  list-style: none;
  padding-left: 0;
}

.arrow-list li::before {
  content: "➤"; /* You can use →, ➜, ➣, ▶, etc. */
  margin-right: 8px;
  color: #007bff; /* Optional: change arrow color */
}


