/* Styles spécifiques équipe inspirés de votre equipe.css existant */
        .team-member-card {
            position: relative;
            transition: all 0.4s ease;
            border-radius: 0;
            overflow: hidden;
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .team-member-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .member-image {
            position: relative;
            overflow: hidden;
            height: 300px;
            background: #f8f9fa;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .team-member-card:hover .member-image img {
            transform: scale(1.08);
            filter: brightness(1.1);
        }

        .member-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(44, 62, 80, 0.95));
            color: white;
            padding: 40px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
            opacity: 0;
        }

        .team-member-card:hover .member-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .expertise-tag {
            background: rgba(197, 60, 60, 0.15);
            border: 1px solid #c53c3c;
            color: #c53c3c;
            padding: 4px 12px;
            font-size: 11px;
            font-weight: 500;
            border-radius: 20px;
            margin-right: 8px;
            margin-bottom: 8px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .team-member-card:hover .expertise-tag {
            background: rgba(255, 255, 255, 0.2);
            border-color: white;
            color: white;
        }

        .member-content {
            padding: 24px;
            text-align: center;
        }

        .member-name {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .member-role {
            color: #c53c3c;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .member-description {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.5;
            margin: 0;
        }

        /* Grille des équipes selon votre style */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 40px;
        }

        /* Filtres selon votre style de boutons */
        .filter-section {
            padding: var(--spacing-xl) 0;
            background: #f8f9fa;
        }

        .filter-buttons {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: var(--spacing-lg);
        }

        .filter-btn {
            background: transparent;
            border: 1px solid #e5e7eb;
            color: #6b7280;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #c53c3c;
            border-color: #c53c3c;
            color: white;
        }

        .filter-info {
            text-align: center;
            color: #6b7280;
            font-size: 14px;
            margin-bottom: var(--spacing-md);
        }

        /* Section valeurs selon votre style */
        .team-values-section {
            background: #2c3e50;
            color: white;
            position: relative;
            overflow: hidden;
            padding: var(--spacing-5xl) 0;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .value-item {
            text-align: center;
            padding: 32px 24px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .value-item:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #c53c3c;
            transform: translateY(-8px);
        }

        .value-icon {
            width: 64px;
            height: 64px;
            background: #c53c3c;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            transition: all 0.3s ease;
            font-size: 24px;
            color: white;
        }

        .value-item:hover .value-icon {
            background: white;
            color: #c53c3c;
            transform: scale(1.1);
        }

        .value-title {
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .value-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive selon votre style */
        @media (max-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .member-image {
                height: 250px;
            }

            .filter-buttons {
                flex-direction: column;
                align-items: center;
            }

            .filter-btn {
                min-width: 120px;
            }
        }