.our_people {
    width: 100%;
}

.our_people .header {
    background-color: white;
    padding: 20px 0;
    text-align: center;
}

.our_people .header h1 {
    color: #E94B35;
    font-size: 48px;
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
}

.our_people .nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    text-align: center;
}

.our_people .nav div {
    flex: 1;
    padding: 15px 0;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.our_people .nav .yellow {
    background-color: var(--secondary-color);
}

.our_people .nav .green {
    background-color: var(--primary-color);
}

.our_people .nav .red {
    background-color: var(--tertiary-color);
}

.our_people .content {
    display: none;
    padding: 20px;
}

#section2 {
    text-align: center;
}

#section2 img {
    max-width: 100%;
}

.our_people .content.active {
    display: block;
}

.our_people .kst {
    width: 80%;
}

.our_people .committee {
    margin-bottom: 40px;
}

.our_people .committee h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.our_people .committee p {
    font-size: 16px;
    margin: 5px 0 0 0;
}


/* new */

.team h1 {
    font-size: 36px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
}

.team {
    padding: 20px;
}

.team-section {
    margin: 20px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: center;
    margin: 0 auto;
    max-width: 800px;
}

.team-grid div {
    padding: 20px;
    color: var(--black);
    font-size: 18px;
    font-weight: normal;
}

.team .yellow {
    background-color: var(--secondary-color);
}

.green {
    background-color: var(--primary-color);
}

.red {
    background-color: var(--tertiary-color);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}