/* Styles for the entire steps section */
section.steps-section {
  background-color: var(--black);
  padding: 2em;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Styles for the heading in the steps section */
section.steps-section h2 {
  font-size: 1.5em;
  text-transform: uppercase;
  font-style: italic;
}

/* Styles for the container of steps */
.steps {
  width: 100%;
  display: flex;
  justify-content: space-around;
  box-sizing: border-box;
}

/* Styles for individual steps */
.step {
  display: flex;
  align-items: center;
}

/* Styles for the steps container */
.steps-container {
  margin-top: 3em;
}

/* Styles for the step number container */
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Styles for the image inside the step number container */
.step-number img {
  width: 60px;
  height: 60px;
  margin-right: 14px;
}

/* Styles for the content of each step */
.step-content {
  text-align: left;
}

/* Styles for the title of each step */
.step-title {
  color: #e11132;
  font-weight: bold;
  text-transform: uppercase;
  font-style: italic;
}

/* Styles for the description of each step */
.step-description {
  color: var(--white);
  text-transform: uppercase;
  font-style: italic;
}

/* Media query for responsive design when the screen width is 1000px or less */
@media only screen and (max-width: 1000px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  /* Adjusting styles for individual steps in smaller screens */
  .step {
    display: contents;
    text-align: center;
  }

  /* Adjusting styles for step number container in smaller screens */
  .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Adjusting styles for the content of each step in smaller screens */
  .step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2em;
  }

  /* Additional adjustment for step description margin in smaller screens */
  .step-description {
    margin: 0;
  }
}
