.hero {
    position: relative;
    width: 110vw;
    height: 340px;
    margin-left: -5vw;
    background-color: #d9d9d9;
    border: 5px solid #fd8b51;
    top: -35px;
    overflow: hidden;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    h2 {
        color: white;
        font-size: 2.5rem;
        font-weight: bold;
        margin: 0 0 1rem 0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        z-index: 3;
        position: relative;
    }

    p {
        color: white;
        font-size: 1.2rem;
        max-width: 80%;
        margin: 0;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        z-index: 3;
        position: relative;
        line-height: 1.5;
    }

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/assets/img/hero.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 1;
    }

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.25);
        z-index: 2;
    }
}
