.page-banner {
    position: relative;
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/hero.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.banner-content h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 5;
}

@media (max-width: 768px) {
    .page-banner {
        height: 150px;
    }
    .banner-content h1 {
        font-size: 2rem;
    }
}
