/* How It Works Section (used in how-it-works.html) */
.how-it-works {
  max-width: 1186px;
  margin: 0 auto;
  background: #fff;
  padding: 80px 0;
}

.how-it-works h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: -0.0616667em;
  line-height: 1.45;
  margin-bottom: 30px;
  text-align: left;
  padding-left: 16px;
}

.steps .step {
  display: flex;
  flex-direction: row;
  align-items: normal;
  gap: 20px;
  cursor: pointer;
}


.steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  transition: background 0.6s ease, transform 0.6s ease;
}

.step:hover {
  background: rgba(255, 55, 95, 0.1);
}

.steps .step .step-icon img.clipart {
  width: 40px;
  height: 40px;
  object-fit: contain;
}


.step .step-content {
  flex: 1;
}

.step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.85em;
  font-weight: 700;
  color: #333;
}

.step .not-available {
  font-size: 0.85em;
  color: #999;
  font-style: italic;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}

.step p {
  font-size: 1.2em;
  color: #48484A;
  line-height: 1.5;
}

.original-steps h2 {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
}

.steps .step .step-icon-hover {
  display: flex;
  align-items: center;
  width: 40px;
}

.steps .step .step-icon-hover img.trending-icon {
  width: 30px;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.steps .step .step-icon-hover img.trending-icon.visible {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

/* mall devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {  }

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  .how-it-works h2 {
    font-size: 3.25em;
    margin-bottom: 40px;
    padding-left: 120px;
  }

  .original-steps {
    margin-top: 4em;
  }

  .steps .step {
    gap: 40px;
  }

  .step {
    padding: 30px;
  }

  .steps .step .step-icon img.clipart {
    width: 50px;
    height: 50px;
  }

  .steps .step .step-icon-hover {
    width: 100px;
  }

  .steps .step .step-icon-hover img.trending-icon {
    width: 50px;
    opacity: 0;
    visibility: hidden;
  }

  .step h3 {
    font-size: 2.1em;
  }

  .step p {
    font-size: 1.5em;
  }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  .how-it-works h2 {
    font-size: 3.75em;
    margin-bottom: 60px;
    padding-left: 160px;
  }

  .original-steps {
    margin-top: 5em;
  }

  .steps .step {
    gap: 70px;
  }

  .step {
    padding: 30px;
  }

  .steps .step .step-icon img.clipart {
    width: 60px;
    height: 60px;
  }

  .steps .step .step-icon-hover {
    width: 120px;
  }

  .steps .step .step-icon-hover img.trending-icon {
    width: 60px;
    opacity: 0;
    visibility: hidden;
  }

  .step h3 {
    font-size: 2.5em;
  }

  .step p {
    font-size: 1.5em;
  }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {  }
