/* Modern navbar custom link styles for .modern-navbar-link */
.modern-navbar-link {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #2d8cff;
    text-decoration: none !important;
    opacity: 1;
    background: none;
    box-shadow: none;
    border: none;
    transition: color 0.2s, font-weight 0.2s;
}
.modern-navbar-link:hover, .modern-navbar-link.active, .modern-navbar-link:focus {
    color: #1769aa;
    font-weight: 500;
    text-decoration: none !important;
    opacity: 1;
    background: none;
    box-shadow: none;
    border: none;
}
/* Modern navbar menu link styles */
.navbar-nav .nav-link {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    color: #2d8cff;
    margin-right: 2rem;
    font-weight: 500;
    text-decoration: none !important;
    opacity: 1;
    transition: color 0.2s, font-weight 0.2s;
}
.navbar-nav .nav-link:last-child {
    margin-right: 0;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #1769aa;
    font-weight: 600;
    text-decoration: none !important;
    opacity: 1;
}
