body {
    margin: 0;
    font-family: 'Montserrat';
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.top-div {
    position: relative;
}

.about-image {
    width: 100%; 
    height: 390px; 
}

.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.75rem;
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); 
}


.bottom-div {
    padding: 2% 8%;

}

.title {
    font-size: 2.25rem;
    text-align: left;
    margin-bottom: 35px;
    position: relative;
    padding-left: 20px; 
    color: #004903;
    font-weight: 600;
}

.title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px; 
    height: 100%; 
    background-color: #004903;
}

.aboutUs-title {
    font-size: 2.25rem;
    text-align: left;
    margin-bottom: 30px;
    padding-top: 10px;
    position: relative;
    color: #004903;
    font-weight: 600;
}


.paragraph {
    font-family: 'Montserrat';
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 40px;
    text-align: left; 
}

.aboutUs-paragraph {
    font-family: 'Montserrat';
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 40px;
    text-align: left; 
}


@media( max-width: 1300px) {

    .about-image {
        height: auto;
    }

    .paragraph {
        text-align: justify;

    }

}

@media( max-width: 768px) {

    .centered-text {
        font-size:3.3rem;
    }

    .title {
        font-size: 2rem;
    }


}

@media( max-width: 480px) {

    .paragraph {
        font-size: 1.15rem;
    }



}

