.hero-section {
    min-height: 70svh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .image-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.hero-section .image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 47, 108, 0.4);
    pointer-events: none;
}

.hero-section .section-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
