<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
* Red Cortex Consulting - Header Alignment Fix
* Version: 1.0
*/

/* Perfect header alignment */
.navbar {
    position: relative;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: var(--container-xxl);
    margin: 0 auto;
    height: 80px;
}

/* Brand container with logo and company name */
.brand-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
    vertical-align: middle;
}

.company-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-red);
    margin-left: 0.75rem;
    white-space: nowrap;
}

/* Desktop navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.nav-links li {
    margin-left: 2.25rem;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

/* Menu container for mobile */
.menu-container {
    display: none;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-left: auto;
    }
    
    .nav-container {
        height: 70px;
        padding: 0.5rem 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        outline: none;
    }
    
    .hamburger-icon {
        width: 24px;
        height: 18px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .hamburger-icon span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--primary-red);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
}

/* Ensure mobile menu is hidden on desktop */
@media (min-width: 992px) {
    .mobile-menu {
        display: none !important;
    }
}
</pre></body></html>