@font-face {
    font-family: 'modules';
    src: url('modules.eot');
    src: url('modules.eot?#iefix') format('embedded-opentype'),
        url('modules.woff2') format('woff2'),
        url('modules.woff') format('woff'),
        url('modules.ttf') format('truetype'),
        url('modules.svg#modules') format('svg');
    font-weight: normal;
    font-style: normal;

    .custom-kb-nav {
        background: #0073e6; /* Change this to match your brand color */
        padding: 10px 0;
        text-align: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .custom-kb-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .custom-kb-nav li {
        display: inline;
        margin: 0 20px;
    }
    
    .custom-kb-nav a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        transition: color 0.3s ease;
    }
    
    .custom-kb-nav a:hover {
        color: #ffdd57; /* Highlight color on hover */
    }
    
    /* Add padding to body to prevent content from being hidden under the fixed nav */
    body {
        padding-top: 50px;
    }