.btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Button style */
.book-btn {
  padding: 14px 40px;
  background-color: #0b4d6d; /* Blue */
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 2px solid #0b4d6d;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.book-btn:hover {
  background-color: #ffffff;
  color: #0b4d6d;
}
