.consultation-banner {
  background-color: #1e90ff; /* Nice blue color */
  color: #ffffff;
  text-align: center;
  padding: 15px 20px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 2px solid #007acc; /* Slight border for a clean look */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.consultation-banner a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.consultation-banner a:hover {
  color: #ffdd57; /* Highlight effect on hover */
  text-shadow: 0 0 5px #ffdd57;
}
