/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #005baa; /* Corporate blue */
    color: #ffffff; /* Light text for contrast */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header with centered logo */
header {
    padding: 40px 20px 20px;
    text-align: center;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff; /* White text on blue background */
    font-size: 1.2rem;
    padding: 10px 20px;
    border: 2px solid #ffffff; /* White border */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.nav-links a:hover {
    background-color: #ffffff;
    color: #005baa;
    border-color: #ffffff;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 20px;
    font-size: 0.9rem;
    color: #cfd8dc; /* Light grey for footer text */
}

/* Centered header content */
.header-content {
    text-align: center;
}

.company-name {
    font-size: 2rem;
    color: #000000;
    margin-top: 10px;
    font-weight: 100;
}

/* Optional tagline styling */
.tagline {
    font-size: 1rem;
    color: #e0f7fa; /* Soft light blue for secondary text */
    margin-top: 5px;
}
