
/* Fixed "Book Now" button styling */
.book-now-button {
    position: fixed;
    right: -45px; /* Distance from the left side */
    bottom: 260px; /* Distance from the bottom */
    background-color: #b9dd00; /* A bright red/orange color */
    color: black;
    padding: 8px 8px;
    font-size: 17px;
    text-decoration: none;
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
	 transform: rotate(270deg);
}

.book-now-button:hover {
    background-color: #ffffff; /* Darker shade on hover */
}