* {
    box-sizing: border-box;
}
.company-mission {

    z-index: 2;
    position: relative;
    
    min-height: 92vh;
    width: 100%;
    /* width:100%; */
    background: linear-gradient(#1f1f1f, #000000);
    /* background: black; */
    /* backdrop-filter: blur(20px) saturate(180%); */
    /* -webkit-backdrop-filter: blur(20px) saturate(180%); */

    /* A gradient border makes it look like light is hitting the corners */
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    /* border-top: 1px solid rgba(255, 255, 255, 0.5); */
    /* border-left: 1px solid rgba(255, 255, 255, 0.5); */

    /* border-radius: 24px; */
    padding: 30px;

    /* Box shadow: The 'sharp' inner shadow creates the thickness effect */
    /* box-shadow:
        inset 0 0 15px rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.2); */

    color: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    gap: 50px;

    margin-bottom: -2px;
    /* box-shadow: 0px 10px 0px 0px #000000; */
}

.company-mission img,p{

    align-items: center;
    /* text-align: center; */

}

.quote {

    max-width: 500px;
    /* padding: auto; */
    font-size: 20px; 
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: flex;
    text-align: center;
    
    /* align-items: center; */
    

}


.value-box{

    list-style: none;
    display: flex;
    justify-content: center; /* Centers boxes horizontally */
    align-items: center;     /* Centers boxes vertically */
    flex-wrap: wrap;         /* Allows them to wrap to the next line */
    
    padding: 0;              
    margin: 0 auto;          
    width: 100%;
    

}

.value-box li{

    max-width: 320px;
    height: auto;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 20px
}
.value-box li h3 {

    color: rgb(255, 255, 255);
}

.value-box li p{

    color: white; 
    width: 100%;  
    max-width: 250px;
    font-size: 16px;
    margin: 0 auto;

}


.value-box li img {

    width: 70px;
    height: 70px;
    border-radius: 20px;
    margin-top: 15px;
    /* padding: 10px; */

}

.value-box li img,h3,p{

     padding: 10px;


}
