 .board-members {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-top: 30px;
    }
    .member {
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        margin-bottom: 20px;
        padding: 20px;
        width: calc(33% - 20px);
        text-align: center;
    }
    .member img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
    }
    .member h3 {
        color: var(--primary-color);
        margin-bottom: 5px;
    }
    .member p {
        margin: 5px 0;
    }