


/* Professional, consistent link styling */
a,
a:visited,
a:hover,
a:active {
  color: #0056b3; /* Professional blue tone */
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #003d80; /* Slightly darker on hover */
  text-decoration: underline;
}



a,
a:visited,
a:hover,
a:active {
  color: #0056b3;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #003d80;
  text-decoration: underline;
}



a,
a:visited,
a:hover,
a:active {
  color: #0056b3;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #003d80;
  text-decoration: underline;
}


/* Primary CTA button style */
.cta-button {
    background-color: #007BFF;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* Sticky CTA for mobile */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background-color: #28a745;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
