
.banner {
    position: relative;
    width: 100%;
    height: 100px;
    background-image: url('https://23136768.fs1.hubspotusercontent-na1.net/hubfs/23136768/Imported_Blog_Media/What-to-know-when-designing-high-rise-buildings-1.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    border-bottom: solid 2px gold;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 59, 94, 0.8); 
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin: 0;
}

.banner p {
    font-size: 1.2rem;
    margin: 10px 0 0;
}

.nav[role="navigation"] > div:first-child {
    display: none;
}

