:root {
            --primary-orange: #ff7700;
            --primary-light: #fff5eb;
            --white: #ffffff;
            --dark: #1a1a1a;
            --gray: #f8f9fa;
            --text-muted: #6c757d;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--white);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Utilisation de la couleur du fichier Couleur.css */
        .text-brand { color: #ff7700 !important; }
        .bg-brand { background-color: #ff7700 !important; }
        .border-brand { border-color: #ff7700 !important; }
        
        .btn-brand {
            background-color: #ff7700;
            border-color: #ff7700;
            color: white;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 119, 0, 0.3);
        }
        
        .btn-brand:hover {
            background-color: #e66b00;
            border-color: #e66b00;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 119, 0, 0.4);
            color: white;
        }

        .btn-outline-brand {
            border: 2px solid #ff7700;
            color: #ff7700;
            background: transparent;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-brand:hover {
            background-color: #ff7700;
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section - Style Jumia */
        .about-hero {
            background: linear-gradient(135deg, #ff7700 0%, #e66b00 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .about-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }
        
        .about-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        @media (max-width: 768px) {
            .hero-title { font-size: 2.2rem; }
            .about-hero { padding: 60px 0; }
        }

        /* Mission Section */
        .mission-section {
            padding: 80px 0;
            background: white;
        }

        .mission-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: 1px solid rgba(255, 119, 0, 0.1);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #ff7700;
        }

        .mission-icon {
            width: 90px;
            height: 90px;
            background: rgba(255, 119, 0, 0.1);
            color: #ff7700;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        /* Stats Section - Style Jumia */
        .stats-section {
            background: #f8f9fa;
            padding: 60px 0;
        }

        .stat-box {
            text-align: center;
            padding: 2rem;
        }

        .stat-number-jumia {
            font-size: 3.5rem;
            font-weight: 800;
            color: #ff7700;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #6c757d;
            font-size: 1rem;
            font-weight: 500;
        }

        /* Timeline / Histoire */
        .history-section {
            padding: 80px 0;
            background: white;
        }

        .timeline {
            position: relative;
            padding-left: 30px;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #ff7700, rgba(255,119,0,0.2));
            border-radius: 3px;
        }

        .timeline-item {
            position: relative;
            padding-bottom: 3rem;
            padding-left: 2rem;
        }
        
        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-dot {
            position: absolute;
            left: -36px;
            top: 5px;
            width: 20px;
            height: 20px;
            background: #ff7700;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.3);
        }

        .timeline-year {
            display: inline-block;
            background: #ff7700;
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .timeline-content h4 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
        }

        /* Valeurs Section */
        .values-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
        }

        .value-card-jumia {
            background: white;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        
        .value-card-jumia:hover {
            transform: translateY(-10px);
            border-color: #ff7700;
            box-shadow: 0 20px 40px rgba(255, 119, 0, 0.15);
        }

        .value-icon-jumia {
            width: 70px;
            height: 70px;
            background: rgba(255, 119, 0, 0.1);
            color: #ff7700;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .value-card-jumia:hover .value-icon-jumia {
            background: #ff7700;
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        /* Équipe Section */
        .team-section {
            padding: 80px 0;
            background: white;
        }

        .team-card {
            text-align: center;
            padding: 2rem;
        }

        /* Style des photos d'équipe */
.team-photo-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    display: inline-block;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-photo-border {
    position: absolute;
    inset: -8px;
    border: 3px solid #ff7700;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.2);
}

.team-card:hover .team-photo-border {
    inset: -12px;
    opacity: 0.6;
    border-width: 4px;
}

/* Supprimer ou commenter l'ancien style .team-avatar si présent */
/*
.team-avatar {
    ... ancien code avec initiales ...
}
*/
        /* Partenaires / Clients */
        .partners-section {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .partner-logo {
            height: 60px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            color: #ff7700;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: white;
        }

        .cta-box-jumia {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            border-radius: 24px;
            padding: 4rem;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-box-jumia::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: rgba(255, 119, 0, 0.1);
            border-radius: 50%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mission-card { padding: 2rem 1.5rem; }
            .stat-number-jumia { font-size: 2.5rem; }
            .cta-box-jumia { padding: 2.5rem 1.5rem; }
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
