/* LFL Logistics - Brand Colors and Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Navigation fix - ensure spacing */
nav {
    display: flex;
    gap: 2rem !important;
    align-items: center;
}

nav a {
    color: #003366 !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 1rem;
}

nav a:hover {
    color: #0077be !important;
}

/* Ensure flexbox works */
.flex {
    display: flex;
}

.gap-8 {
    gap: 2rem;
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md\\:flex {
        display: flex !important;
    }
}

/* Button styles */
.btn-primary {
    background-color: #0077be;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #003366;
}

/* Brand colors */
.text-primary-blue {
    color: #0077be !important;
}

.text-dark-blue {
    color: #003366 !important;
}

.bg-primary-blue {
    background-color: #0077be !important;
}

.bg-dark-blue {
    background-color: #003366 !important;
}