/* Reset body to allow the banner to tuck under the fixed nav */
body {
    padding-top: 0 !important;
    margin: 0;
}

/* REMOVE .header-spacer from your HTML or set height to 0 */
.header-spacer {
    display: none; 
}

/* The Fixed Header Container */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    /* Frosted Glass Effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.8); /* Slight white tint */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* The Taskforce Banner - The Star of the Show */
.page-title {
    /* Padding-top should be roughly Header Height + 40px */
    padding-top: 190px !important; 
    padding-bottom: 80px !important;
    margin-top: 0 !important;
    background-color: #007bff; /* Use your primary blue */
    text-align: center;
}

/* Ensure the text is centered and visible */
.page-title h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 10px;
}