.bureau-container{
    max-width:1200px;
    margin:auto;
    font-family:Arial, sans-serif;
}

.bureau-intro{
    text-align:center;
    padding:40px 20px;
    background:#f5f9fc;
    border-radius:10px;
    margin-bottom:40px;
}

.bureau-intro h2{
    color:#004c80;
    margin-bottom:15px;
}

.bureau-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.membre-card{
    background:white;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    overflow:hidden;
    transition:0.3s;
}

.membre-card:hover{
    transform:translateY(-5px);
}

.membre-photo{
    width:160px;
    height:160px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    margin:25px auto 15px;
    border:5px solid #DE651E;
}

.membre-content{
    padding:5px;
    text-align:center;
}

.membre-content h3{
    margin-bottom:5px;
    color:#004c80;
}

.role{
    color:#0078c8;
    font-weight:bold;
    margin-bottom:15px;
}

.quote{
    font-style:italic;
    color:#666;
    margin-top:15px;
}

