/* Sticky Quick-Nav Bar Layout */
.page-nav-bar {
    position: sticky;
    top: 60px; /* Sits cleanly right below your main sticky header line */
    background: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    z-index: 90;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 2rem;
}

.page-nav-bar a {
    text-decoration: none;
    color: #111111;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.page-nav-bar a:hover {
    color: #008000; /* Matches your primary theme brand green */
}

/* Smooth Scrolling Behavior */
html {
    scroll-behavior: smooth;
}