.menu-nav {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
background-color: #f4f4f4;
border-bottom: 2px solid #ccc;
}
.menu-nav li {
margin: 0.5em 1em;
}
.menu-nav a {
text-decoration: none;
color: #333;
font-weight: bold;
padding: 0.5em 1em;
border-radius: 5px;
transition: background-color 0.2s ease;
}
.menu-nav a:hover {
background-color: #ddd;
}