    .hero-banner {
        background: url('../images/banners/header-section-banner.png') center/cover no-repeat;
        height: 40vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        position: relative;
    }

    .hero-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .hero-banner .content {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .hero-banner h1 {
        font-size: 3rem;
        font-weight: bold;
    }

    .section-title {
        font-weight: bold;
        font-size: 2rem;
        color: #c0c0c0;
    }

    .text-highlight {
        color: #9FCC9C;
        font-weight: bold;
    }