<style>


.button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

/* Hide by default */
.btn-whatsapp {
  display: none;
}



/* Show on screens smaller than 768px (typical tablet/mobile) */
@media (max-width: 767px) {
  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

}

@media (max-width: 767px) {
.btn-info {
  display: inline-flex;
  align-items: center;
  background-color: #131369;  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  }

}

@media (max-width: 376px) {
  .button-row {
    flex-wrap: nowrap;  /* force in one row */
  }

  .btn-whatsapp,
  .btn-info {
    flex: 1;                /* share space equally */
    min-width: 0;           /* prevent overflow */
    justify-content: center;
    font-size: 14px;        /* slightly smaller text */
    padding: 8px 10px;      /* reduce padding */
  }
}



</style>