body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    background: linear-gradient(to right, #0a2a6c, #003b8e);
    padding: 12px 0;
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

/* MENU */
.menu a {
    color: #ffffff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
}

.menu a.active {
    border-bottom: 3px solid orange;
}

/* BANNER */
.banner {
    width: 100%;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* FOOTER */
.footer {
    background: #0a2a6c;
    color: #ffffff;
    text-align: center;
    padding: 15px;
}