.value-section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
    background-color: #FFAA01;
}

    .value-container{
        display: flex;
        width: 80vw;
        justify-content:space-around;
        align-items: center;
    }

        .value-paragraph{
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            line-height: 1.5rem;
            color: white;
            max-width: 700px;
        }

            .value-img{
                height: 180px;
            }


@media (max-width: 600px) {
    .value-container{
        flex-direction: column-reverse;
        gap: 50px;
    }
    .value-paragraph{
        text-align: center;
    }
}