.about-vision-main {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers children horizontally */
    width: 100%;
    max-width: 100vw;
}

h1 {
    display: flex;
    font-size: 4rem;
    justify-content: center;
    align-items: center;
    font-weight: normal;
}

.image-bound{
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-bound img{
    width: 50%;
    height: auto;
}

.vision-description {
    display: flex;
    padding: 2rem;
    height: auto;
    width: 50vw;
    justify-content: center;
    align-items: start;
}

@media screen and (max-width: 768px) {
    h1 {
        display: none;
    }
    .vision-description {
        display: flex;
        padding: 2rem;
        height: auto;
        width: 100vw;
        justify-content: center;
        align-items: start;
    }
}
