/* assets/style.css */

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3B6371;
    color: white;
    padding: 15px 30px;
    font-family: Arial, sans-serif;
}

.header-nav .logo {
    font-weight: bold;
    font-size: 1.5em;
}

.header-nav .menu {
    display: flex;
    gap: 25px;
}

.header-nav .menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.header-nav .menu a:hover {
    text-decoration: underline;
}