.book-now-button {
  background-color: #000000;   /* black button */
  color: #ffffff;              /* white text */
  border: 1px solid #ffffff;   /* thin white outline */
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
}

.book-now-button:hover {
  background-color: #1a1a1a;   /* subtle hover effect */
}