body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff;
            color: #333;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* En-tête (Navigation) */
        header {
            text-align: center;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }

 
        /* Section Principale */
        main {
            max-width: 980px;
            margin: 40px auto;
            padding: 0 20px;
            text-align: center;
        }

        .color-BA5A87 {
            color: #BA5A87;
        }

        
        /* Grille des partenaires */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            justify-content: center;
        }

        .partner-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 30px;
            background-color: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .partner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #BA5A87, #4C989C);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .partner-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .partner-card:hover::before {
            transform: scaleX(1);
        }

        /* Zone Image */
        .partner-logo {
            width: 100%;
            height: 160px; /* Hauteur fixe pour l'alignement */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            overflow: hidden;
            padding: 10px;
        }

        /* Style spécifique pour l'image dans le conteneur */
        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain; /* Garde les proportions sans couper */
        }

        /* Placeholder pour le logo manquant */
        .logo-placeholder {
            background-color: #f4f4f4;
            color: #888;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-style: italic;
        }

        /* Titre et Description */
        .partner-info h3 {
            margin: 10px 0 20px 0;
            font-size: 1.4em;
            color: #444;
            font-weight: 600;
        }

        .partner-info p {
            font-size: 1em;
            color: #666;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.6;
        }

        /* Bouton Accéder */
        .btn-access {
            display: inline-block;
            padding: 12px 35px;
            border: 2px solid #4C989C;
            background-color: transparent;
            color: #4C989C;
            font-size: 15px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin-top: auto;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-access:hover {
            background-color: #4C989C;
            color: #fff;
            box-shadow: 0 5px 15px rgba(76, 152, 156, 0.3);
            transform: translateY(-2px);
        }

        /* Pied de page */
        footer {
            text-align: center;
            padding: 40px 0;
            font-size: 0.8em;
            color: #888;
            margin-top: 50px;
            border-top: 1px solid #eee;
        }