.button-container {
  display: flex;
  justify-content: center; /* Centers buttons horizontally */
  align-items: center; /* Centers buttons vertically */
  margin-top: 20px;
}
.small-button-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px; /* Half the height */
  border: 4px solid #e67e22;
  border-radius: 10px;
  background-color: #DAAE5D;
  color: white;
  font-size: 1rem; /* Adjust font size */
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  width: 175px; /* Half the width */
}

.small-button-box:hover {
  background-color: #C69A49;
}

@media (max-width: 768px) {
  .small-button-box {
    width: 40%; /* Adjust width for smaller screens */
    font-size: 0.9rem; /* Reduce font size */
  }
}

@media (max-width: 480px) {
  .small-button-box {
    width: 70%; /* Make button wider on very small screens */
    font-size: 1rem;
  }
}
.button-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  border: 4px solid #e67e22;
  border-radius: 10px;
  background-color: #DAAE5D;
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  width: 350px; /* Default width */
}

.button-box:hover {
  background-color: #C69A49;
}

.row {
  display: flex;
  justify-content: center; /* Center align the buttons */
  gap: 60px; /* Add space between the buttons */
  margin-top: 20px;
}

.col-6 {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .button-box {
    width: 65%; /* Adjust width for smaller screens */
    font-size: 1.2rem; /* Reduce font size */
  }

  .row {
    gap: 30px; /* Reduce gap between buttons */
  }
}

@media (max-width: 480px) {
  .button-box {
    width: 90%; /* Make buttons take most of the width on very small screens */
    font-size: 1.3rem; /* Further reduce font size */
  }

  .row {
    flex-direction: column; /* Stack buttons vertically on very small screens */
    gap: 20px; /* Adjust gap for stacked buttons */
  }
}
