.profil-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #ddd;
}

.page-container {
    max-width: 1200px;
    width: 90%;
    margin: 8% auto;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-container h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.participants-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.participant {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.participant:hover {
    transform: translateY(-5px);
}

.profil-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #ddd;
}

.participant h3 {
    margin: 10px 0 5px;
    font-size: 1.2em;
    color: #2c3e50;
}

.participant p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #555;
}

.participant a {
    display: inline-block;
    margin-top: 10px;
    color: #01661f;
    text-decoration: none;
    font-weight: bold;
}

.participant a:hover {
    text-decoration: underline;
}

/* Styles pour les écrans mobiles */
@media screen and (max-width: 768px) {
    .page-container {
        width: 95%;
        margin: 15% auto;
        padding: 15px;
    }

    .participants-list {
        flex-direction: column;
        align-items: center;
    }

    .participant {
        width: 100%;
        max-width: 300px;
    }

    .page-container h2 {
        font-size: 1.5em;
    }

    .participant h3 {
        font-size: 1.1em;
    }

    .participant p {
        font-size: 0.85em;
    }
}
