.founderContent {
    width: 100vw;

    padding: 7.5vh 20vw;

    display: flex;
    flex-direction: column;
}

.foundersHeader {
    font-size: 40px;
    font-weight: bold;

    color: var(--darkGreen);

    margin-bottom: 7.5vh;
}

.founder {
    width: 100%;

    padding: 30px;

    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);

    display: flex;

    margin-bottom: 50px;
}

.founder:last-child {
    margin-bottom: 0;
}

.founderImage {
    width: 175px;
    height: 175px;

    border-radius: 1000px;

    margin-right: 20px;
}

.founderText {
    display: flex;
    flex-direction: column;
}

.founderTextTitle {
    color: var(--darkGreen);

    font-size: 30px;
    font-weight: 600;
}

.founderTextDescription {
    font-size: 20px;
    line-height: 1.5;

    margin-top: 10px;
}

/* Media Queries */

@media (max-width: 768px) {
    .founderContent {
        padding: 7.5vh 5vw;
    }

    .foundersHeader {
        text-align: center;

        margin-bottom: 5vh;
        margin-top: -2.5vh;
    }

    .founder {
        flex-direction: column;
        align-items: center;
        text-align: center;

        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }

    .founderImage {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }

    .founderText {
        align-items: center;
    }
}