.banner-section {
    position: relative;
    width: 100%;
    height: 600px;
    background: url('../static-content/banner.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #f4f4f4;
    text-align: center;
    padding: 20px;
}

.banner-content h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}