:root {
    --first-color: #243253;
    --light-color: #f1f1f1;
    --dark-color: #3d3d3d;
}

.how-we-are {
    padding: 100px 25px 0 25px;
    background-color: var(--first-color);
    color: var(--light-color);
    display: flex;
    flex-direction: column;
    gap: 50px;

}

.how-we-are .part {
    text-align: center;
}

.how-we-are .part h1 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #FEFBC6;
}

.how-we-are .part h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #FEFBC6;
}

/* .how-we-are .part h3 {
    font-size: 12px;
    margin-bottom: 6px;
} */
/* .how-we-are .part p {
    max-width: 600px;
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
    text-align: justify;
} */
.how-we-are .part p,
.part2 .part3,
.part3 {
    max-width: 600px;
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-align: start;
}

.how-we-are .part img {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 25px;
}

.how-we-are .part .updateChairPerson p {
    font-size: 19px;
    margin-bottom: 10px;
}

.how-we-are .part .updateChairPerson2 p {
    font-size: medium;
    font-weight: bold;
}

.person-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.person-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #B197FC;
}

.person-info {
    max-width: 600px;
    color: var(--light-color);
}

.person-info h2 {
    font-size: 28px;
    font-weight: bold;
    color: #FEFBC6;
    margin-bottom: 10px;
}

.person-info h4 {
    font-size: 22px;
    font-weight: 600;
    color: #B197FC;
    margin-bottom: 15px;
}

.person-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #d3e1ec;
    text-align: justify;
}


@media screen and (min-width: 768px) {
    .how-we-are {
        gap: 75px;
    }

    .how-we-are .part {
        text-align: start;
        display: flex;
        justify-content: center;
        align-items: start;
        gap: 50px;
    }

    .how-we-are .part img {
        max-width: 400px;
    }

    .how-we-are .part h1 {
        font-size: 48px;
        margin-bottom: 24px;
    }

    .how-we-are .part h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .how-we-are .part p {
        font-size: 20px;
        line-height: 1.7;
    }

    .how-we-are .part .updateChairPerson p {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .how-we-are .part .updateChairPerson2 p {
        font-size: large;
        font-weight: bold;
    }

    .how-we-are .person-section {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        text-align: center;
    }

    .how-we-are .person-section div:first-child img {
        width: 300px;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
    }

    .how-we-are .person-section div:last-child {
        max-width: 600px;
    }
}