    .team-section body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin: 0;
        padding: 0;
        background: #f9f9f9;
        color: #333;
    }

    .team-section h2 {
        text-align: center;
        margin: 50px 0 20px;
        font-size: 2em;
        color: #222;
    }

    /* === SECTION EQUIPE === */
    .team-section .team {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        padding: 20px;
        max-width: 1100px;
        margin: auto;
    }

    .team-section .team-member {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s;
    }

    .team-section .team-member:hover {
        transform: translateY(-10px);
    }

    .team-section .team-member img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

    .team-section .team-member h3 {
        margin: 15px 0 5px;
        font-size: 1.2em;
        color: #163866;
    }

    .team-section .team-member p {
        font-size: 0.9em;
        color: #777;
        margin-bottom: 15px;
    }

    .team-section .socials {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding-bottom: 15px;
    }

    .team-section .socials a {
        text-decoration: none;
        font-size: 18px;
        color: #163866;
        transition: color 0.3s, transform 0.3s;
    }

    .team-section .socials a:hover {
        color: #cc7131;
        transform: scale(1.2);
    }

    /* === SECTION REALISATION === */
    .team-section .project {
        /* max-width: 1100px;
      margin: 50px auto;
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1); */
    }

    .team-section .project-header {
        text-align: center;
        padding: 20px;
    }

    .team-section .project-header h3 {
        font-size: 1.8em;
        margin: 0;
    }

    .team-section .project-header p {
        color: #666;
        max-width: 800px;
        margin: 10px auto;
        font-size: 1em;
    }

    .team-section .project-main {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .team-section .project-main img {
        width: 100%;
        max-width: 600px;
        border-radius: 10px;
        margin: 20px;
        object-fit: cover;
    }

    /* Galerie */
    .team-section .gallery {
        position: relative;
        /* max-width: 900px; */
        margin: 30px auto;
        overflow: hidden;
        border-radius: 15px;
    }

    .team-section .gallery-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .team-section .gallery img {
        width: 100%;
        flex-shrink: 0;
        object-fit: cover;
    }

    .team-section .gallery-buttons {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
    }

    .team-section .gallery-buttons button {
        background: rgba(0, 0, 0, 0.5);
        border: none;
        color: white;
        font-size: 22px;
        padding: 10px;
        cursor: pointer;
        border-radius: 50%;
        transition: background 0.3s;
    }

    .team-section .gallery-buttons button:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    .img-space {
        width: 90vw;
        height: 80vh;
    }

    @media (max-width: 920px) {
        .img-space {
            width: 90vw;
            height: 30vh;
        }
    }