.banner {
    background-color: #1f3a5f;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 100px 32px 60px;
    min-height: 280px;
    box-sizing: border-box;
    text-align: center;
    transition: background-image 0.3s ease;
    position: relative;
    z-index: 1;
}

.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.banner h1,
.banner p {
    position: relative;
    z-index: 1;
}

.banner h1 {
    margin: 0 0 10px;
    font-size: 2rem;
}

.banner p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}
