.about-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.7rem 0.5rem;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            color: red;
            margin-bottom: 2rem;
            margin-top: 70px;
            text-transform: uppercase;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-card {
            position: relative;
            height: 270px;
            border-radius: 30px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

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

        .team-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:nth-child(1) .team-image {
            object-position: center 30%;
        }

        .team-card:nth-child(2) .team-image {
            object-position: center 10%;
        }

        .team-card:nth-child(3) .team-image {
            object-position: center 30%;
        }


        .team-card:hover .team-image {
            transform: scale(1.1);
        }

        /* Icônes sociales */
        .social-icons {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .social-link:hover {
            transform: scale(1.15);
            background: red;
            box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
        }

        .social-link svg {
            width: 22px;
            height: 22px;
            fill: #000;
        }
        .social-link img {
            width: 45px;
            height: 45px;
            fill: #000;
        }

        .team-card:nth-child(4) .social-link img {
            height: 35px;
            width: 35px;
        }

      
         .social-link video {
            width: 70px;
            height: 70px;
            fill: #000;
        }

        .team-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            transition: all 0.5s ease;
        }

        .team-name {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            transform: translateY(0);
            transition: all 0.5s ease;
        }

        .team-description {
            color: white;
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
            max-height: 0;
            overflow: hidden;
        }

        .team-card:hover .team-overlay {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
        }

        .team-card:hover .team-name {
            transform: translateY(-10px);
        }

        .team-card:hover .team-description {
            opacity: 1;
            transform: translateY(0);
            max-height: 300px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .team-grid {
                gap: 1.5rem;
            }

            .team-card {
                height: 450px;
            }

            .section-title {
                font-size: 2.5rem;
            }
        }

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

            .team-card {
                height: 500px;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .team-name {
                font-size: 1.8rem;
            }

            .team-description {
                font-size: 1rem;
                opacity: 1;
                transform: translateY(0);
                max-height: 300px;
            }

            .team-overlay {
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85));
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 2rem 0.5rem;
            }

            .team-card {
                height: 400px;
                border-radius: 20px;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .team-name {
                font-size: 1.5rem;
            }

            .team-description {
                font-size: 0.9rem;
            }

            .team-overlay {
                padding: 1.5rem;
            }

            .social-icons {
                top: 10px;
                right: 10px;
                gap: 8px;
            }

            .social-link {
                width: 35px;
                height: 35px;
            }

            .social-link svg {
                width: 18px;
                height: 18px;
            }
        }