* {
    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;
}

.note {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
  text-align: center;
}

.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 (max-width: 768px) {
  .steps-container {
      flex-direction: column;
  }
  .step {
      margin-bottom: 5px;
  }
   .step img {
    max-height: 300px;
  }
  
}