body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #007bff;
    padding: 15px;
    color: white;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: 0.3s;
}

.navbar ul li a:hover {
    background: white;
    color: #007bff;
    border-radius: 5px;
}

/* Banner Styling - Full Width and Responsive */
.banner {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px; /* Set a reasonable max height */
    object-fit: cover; /* Ensures the image covers the space well */
}

/* Content Area */
#content {
    padding: 20px;
    background: white;
    margin: 20px auto;
    width: 90%;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #007bff;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    
    .banner {
        max-height: 250px; /* Adjust for smaller screens */
    }
    
    #content {
        width: 95%;
        margin: 10px auto;
    }
}
