/* Add this CSS to your site’s custom CSS section */
.sticky-book-call {
  position: fixed;
  bottom: 20px;      /* distance from bottom */
  right: 20px;       /* distance from right */
  padding: 12px 20px;
  background-color: #004080;  /* adjust to match your brand colours */
  color: #ffffff;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  z-index: 1000;     /* ensures it stays above other elements */
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.2s ease-in-out;
}

.sticky-book-call:hover {
  background-color: #002d5c;  /* slightly darker on hover */
}
