/* Ensure the header spans the entire width */
header {
    width: 100%;
    height: 200px; /* Fixed height, adjust if needed */
    overflow: hidden; /* Ensures no extra space */
}

/* Style the banner image */
header img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintains aspect ratio while covering the area */
    display: block;
}

