#value-section {
    min-height: 70vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    background-color: rgba(0, 0, 0, 0.8);
}

#value-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 5vh 10vw;
}

#value-content h2 {
    color: #fff;
    margin-bottom: 20px;
}

#value-content p {
    margin: 0;
    padding: 0;
    width: 80vw;
    color: #fff;
    line-height: 1.6;
    font-size: large;
}

#health-and-safety-image {
    width: 50vw;
    background-image: url('../res/health-n-safety.jpg');
    background-position: center;
    background-size: cover;
    border-radius: 0 8px 8px 0;
    height: 30vh;
}

#health-and-safety {
    min-height: 30vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;

    background-color: #fff;
    border-radius: 8px;
    width: 80vw;
}

#health-and-safety-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 20vh;
    padding: 5vh 10vw;
}

#health-and-safety-content ul {
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 35vw;
    line-height: 1.6;
    font-size: large;
}

#health-and-safety-content li {
    margin-bottom: 10px;
    min-height: 40px;
}

@media screen and (max-width: 950px) {
    #health-and-safety {
        flex-direction: column-reverse;
        margin-bottom: 5vh;
        min-height: 70vh;
    }

    #health-and-safety-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 20vh;
        padding: 5vh 0vw;
        width: 70%;
    }

    #health-and-safety-content ul {
        width: 100%;
    }

    #health-and-safety-image {
        width: 60vw;
        background-image: url('../res/health-n-safety.jpg');
        background-position: center;
        background-size: cover;
        border-radius: 8px;
        min-height: 35vh;
        margin-top: 5vh;
    }

    #health-and-safety-content p {
        width: 60vw;
    }
}