/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 50px;
    background-color: #2e3d54;
}

.logo img {
    max-width: 150px;
    max-height: 50px;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 768px) {
    header {
        padding: 10px 35px;
    }
}