/* Basic styling for the page content */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.content {
  padding: 100px;
  text-align: center;
}

/* Style for the sticky call button */
.sticky-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0b2e5b;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease;
}

/* Hover effect for the button */
.sticky-button:hover {
  background-color: #218838;
  transform: scale(1.1);
}