.fd-navbar {
    background-color: #ffffff; 
    color: #444444; 
    font-family: 'Segoe UI', Arial, sans-serif;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); 
}

.fd-container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.fd-logo img {
    height: 55px; 
    width: auto;
    margin-right: 60px;
}

.fd-nav-links {
    display: flex;
    gap: 30px;
    flex-grow: 1;
    justify-content: flex-end;
}

.fd-link {
    color: #828282;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.fd-link svg {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.fd-link:hover {
    color: var(--color-secondary, #0851A7);
}

.fd-utils {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fd-util-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #828282;
    pointer-events: none;
}

.fd-util-item svg {
    margin-top: 4px;
}


.fd-util-divider {
    width: 1px;
    height: 40px;
    background-color: #e0e0e0;
    margin: 0 20px;
}

@media (max-width: 1024px) {
    .fd-nav-links, .fd-util-divider {
        display: none;
    }
    .fd-logo img {
        height: 40px;
    }
    
    .fd-utils{
        display: none;
    }
}