.about-us-title {
    font-size: 1.5vw;
    font-weight: bold;
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px;
}

.info-sections {

    justify-content: space-between;
    margin: auto;
    max-width: 1200px;
    padding: 20px;
}

.info-section {
    display: flex;
    padding: 20px 0;
}

.info-section-content hr {
    width: 8vw;
    border: 0.75px solid var(--primary);
    margin: 0;
    margin-bottom: 10px;
}

.info-section h2 {
    font-size: 1.25vw;
    font-weight: bold;
    margin-bottom: 10px;
}

.info-section .question {
    font-weight: bold;
    margin-bottom: 20px;
}

.info-section p {
    font-size: 0.8vw;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-section-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 60%;
}

.info-section .img-div img {
    object-fit: fill;
    width: 21.5vw;
    height: 11vw;
    padding: 0 20px 0 0;
}

.team-section {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: start;
}

.team-members-section {
    display: flex;
    text-align: center;
}

.team-title {
    font-size: 1vw;
    font-weight: bold;
    margin-bottom: 20px;
}

.team-section hr {
    width: 8vw;
    border: 2px solid var(--primary);
    margin: 0;
    margin-bottom: 20px;
}

.team-member {
    margin: 15px;
}

.team-photo {
    margin-bottom: 10px;
    width: 10vw;
}

.team-role {
    font-size: 0.8vw;

    margin-bottom: 5px;
    text-align: start;
}

.team-member h3 {
    font-weight: bold;
    text-align: start;
    font-size: 0.8vw;
    margin-bottom: 0;
}

.team-description {
    font-size: 0.8vw;
    line-height: 1.6;
    text-align: justify;
}

@media screen and (max-width: 900px) {
    .about-us-title {
        font-size: 3vw;
    }

    .info-section {
        flex-direction: column-reverse;
        padding: 0;
    }

    .info-section h2 {
        font-size: 3vw;
        margin-top: 20px;
    }

    .info-section p {
        font-size: 2vw;
    }

    .info-section-content {
        width: 100%;
    }

    .info-section .img-div img {
        width: 100%;
        height: auto;
        padding: 0;
    }

    .team-members-section {
        flex-direction: column;
    }

    .team-member {
        margin: 15px 0;
    }

    .team-photo {
        width: 20vw;
    }

    .team-role {
        text-align: center;
        font-size: 2.5vw;
    }

    .team-member h3 {
        text-align: center;
        font-size: 2.5vw;
    }

    .team-description {
        text-align: center;
        font-size: 2.5vw;
    }

    .team-title {
        font-size: 3vw;
    }
}