.page-hero {
    height: 40vh;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-hero .hero-static-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('./images/solar_panel_worker.png');
    background-size: cover;
    background-position: center 30%;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 26, 0.85) 0%, rgba(0, 86, 179, 0.4) 100%);
    z-index: -1;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
}
