* {
    box-sizing: border-box;
}

.steps-wrapper {
  margin: auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); */
  max-width: 1300px;
}
.steps-container {
  display: flex;
  gap: 2vh;
  
}

h1 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #222;
  text-align: center;
}
.sub-heading {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
  text-align: center;
}
.note {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
  text-align: center;
}
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 30px;
}
.step {
  padding: 20px;
  border-left: 5px solid #7D0A0A;
  background-color: #7d0a0a1e;
  border-radius: 8px;
  margin-bottom: 35px;
}

.step h2 {
  margin: 0 0 10px;
  color: #7D0A0A;
  font-size: 18px;
}

  .step img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 8px;
  }

  .button-link {
    display: inline-block;
    background-color: #dc3545;
    color: white;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
  }

  .button-link:hover {
    background-color: #bb2d3b;
  }

  .highlight {
    color: #28a745;
    font-weight: 600;
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .steps-container {
      flex-direction: column;
      gap: 1px;
    }
    .step {
      margin-bottom: 10px;
    }
    .steps-wrapper {
      padding: 30px;
      margin-top: 2vh;
    }
    h1 {
      font-size: 2rem;
    }
    .step h2{
      font-size: 2rem;
    }
    .note {
      font-size: 2rem;
    }
  }

@media (max-width: 768px) {
  .steps-container {
      flex-direction: column;
  }
  .step {
      margin-bottom: 5px;
  }
   .step img {
    max-height: 300px;
  }
  
}