.homepage-buttons-block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;
  background: #fff;
  min-height: calc(100vh - 300px); /* Adjust this value based on your header/footer height */
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
}

.centered-image {
  max-width: 100%;
  height: auto;
}

.buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  gap: 2rem;
}

@media (max-width: 768px) {
  .buttons-container {
    flex-direction: column;
    width: 90%;
  }
}

.button-wrapper {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 2px solid #0056b3;
  border-radius: 8px;
  color: #0056b3;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  min-height: 90px; /* Added to ensure both buttons have the same height */
}

.custom-button:hover {
  background: #0056b3;
  color: #ffffff;
  text-decoration: none;
}

.button-text {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

.button-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.custom-button:hover .button-icon {
  transform: translateX(5px);
}
.homepage-buttons-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;
  background: #fff;
  min-height: calc(100vh - 300px); /* Adjust this value based on your header/footer height */
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
}

.centered-image {
  max-width: 100%;
  height: auto;
}

.buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  gap: 2rem;
}

@media (max-width: 768px) {
  .buttons-container {
    flex-direction: column;
    width: 90%;
  }
}