.our-team {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.our-team h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1E3A61; 
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.team-member {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: center;
    padding: 20px;
}

.team-member img {
    width: 100%;
    height: 250px;
    border-radius: 50%;
}

.team-member h3 {
    font-size: 24px;
    margin: 10px 0 5px 0;
    color: #1E3A61;
}

.team-member p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .our-team h2 {
        font-size: 32px;
    }

    .team-member h3 {
        font-size: 20px;
    }

    .team-member p {
        font-size: 14px;
    }
}

@media (max-width: 300px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 100%;
    }

}
