body {
    position: relative;
    min-height: 100vh;
    background-image: url('/assets/site/blog/background-lg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2; /* Set background to lowest layer */
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 255, 0, 0.5); /* Green overlay with 50% opacity */
    z-index: -1; /* Set overlay just above background but below content */
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
}
