
/* Header Section */
header {
    background-color: white;
    border-bottom: 2px solid gray;
    text-align: center;
    padding: 10px 0;
}

/* Logo Section */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.logo-container img {
    max-width: 300px;
    width: auto;
}

/* Menu Container */
.menu-container {
    background-color: #000080;
}

/* Navigation Menu */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    background-color: #000080;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin: 0 20px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: lightgray;
}