     

        :root {
            --primary: #c41e3a;
            --primary-dark: #8b0000;
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --background: #f8f9fa;
        }

       

        .hero {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            min-height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 1500"><rect fill="%23ffffff" width="2000" height="1500"/><defs><radialGradient id="a" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%23ffffff"/><stop offset="1" stop-color="%23ffffff"/></radialGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="0" y1="750" x2="1550" y2="750"><stop offset="0" stop-color="%23f7f7f7"/><stop offset="1" stop-color="%23ffffff"/></linearGradient></defs><path fill="url(%23a)" d="M1549.2 51.6c-5.4 99.1-20.2 197.6-44.2 293.6c-24.1 96-57.4 189.4-99.3 278.6c-41.9 89.2-92.4 174.1-150.3 253.3c-58 79.2-123.4 152.6-195.1 219c-71.7 66.4-149.6 125.8-232.2 177.2c-82.7 51.4-170.1 94.7-260.7 129.1c-90.6 34.4-184.4 60-279.5 76.3C192.6 1495 96.1 1502 0 1500c96.1-2.1 191.8-13.3 285.4-33.6c93.6-20.2 185-49.5 272.5-87.2c87.6-37.7 171.3-83.8 249.6-137.3c78.4-53.5 151.5-114.5 217.9-181.7c66.5-67.2 126.4-140.7 178.6-218.9c52.3-78.3 96.9-161.4 133-247.9c36.1-86.5 63.8-176.2 82.6-267.6c18.8-91.4 28.6-184.4 29.6-277.4c0.3-27.6 23.2-48.7 50.8-48.4s49.5 21.8 49.2 49.5c0 0.7 0 1.3-0.1 2L1549.2 51.6z"/><g fill="%23FFF" fill-opacity="0.1"><circle cx="775" cy="1050" r="50"/><circle cx="425" cy="1200" r="50"/><circle cx="1075" cy="1200" r="50"/><circle cx="575" cy="900" r="50"/><circle cx="975" cy="900" r="50"/></g></svg>');
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

        .hero-content {
            text-align: center;
            color: white;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .hero p {
            font-size: 1.2rem;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }

        .container {
            max-width: 1200px;
            margin: -4rem auto 2rem;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .accordion {
            display: grid;
            gap: 1.5rem;
        }

        .accordion-item {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .accordion-header {
            padding: 2rem;
            width: 100%;
            text-align: left;
            background: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .accordion-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .accordion-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .accordion-toggle {
            width: 30px;
            height: 30px;
            background: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accordion-inner {
            padding: 0 2rem 2rem;
            color: var(--text-light);
        }

        .accordion-header.active .accordion-toggle {
            background: var(--primary);
            color: white;
            transform: rotate(180deg);
        }

        .subsection {
            margin-top: 1.5rem;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 0.8rem;
        }

        .subsection h3 {
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .subsection ul {
            list-style: none;
            padding-left: 1.5rem;
        }

        .subsection li {
            margin-bottom: 0.5rem;
            position: relative;
        }

        .subsection li::before {
            content: "";
            position: absolute;
            left: -1.5rem;
            top: 0.5rem;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .container {
                padding: 0 1rem;
                margin-top: -2rem;
            }

            .accordion-header {
                padding: 1.5rem;
            }

            .accordion-inner {
                padding: 0 1.5rem 1.5rem;
            }
        }
    /* Ajout des styles pour les nouvelles sections */
        .stats-container {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            width: 300px;
            z-index: 10;
        }

        .stats-item {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stats-label {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .quick-actions {
            position: fixed;
            left: 2rem;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            z-index: 10;
        }

        .action-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: none;
            border: none;
            color: var(--text-dark);
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            border-radius: 0.5rem;
        }

        .action-btn:hover {
            background: #f8f9fa;
            color: var(--primary);
        }

        .action-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .services-section, .certifications-section {
            padding: 4rem 2rem;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin-top: 1.5rem;
            text-align: left;
        }

        .service-features li {
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .service-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
        }

        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .certification-badge {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .certification-badge:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .badge-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .certification-badge h4 {
            margin: 1rem 0;
            color: var(--text-dark);
        }

        .certification-badge p {
            color: var(--text-light);
            font-size: 0.9rem;
        }
       


    

.suppliers-section {
    background: #fff;
    padding: 4rem 2rem;
}

.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.supplier-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.supplier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}




.supplier-logo {
    width: 350px;  /* Taille de base plus grande */
    height: 200px;  /* Taille de base plus grande */
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Pour les très grands écrans */
@media screen and (min-width: 1400px) {
    .supplier-logo {
        width: 400px;
        height: 250px;
    }
}

/* Pour les écrans moyens */
@media screen and (max-width: 1200px) {
    .supplier-logo {
        width: 300px;
        height: 180px;
    }
}

/* Pour les tablettes */
@media screen and (max-width: 992px) {
    .supplier-logo {
        width: 250px;
        height: 150px;
    }
}

/* Pour les petites tablettes */
@media screen and (max-width: 768px) {
    .supplier-logo {
        width: 200px;
        height: 120px;
    }
}

/* Pour les mobiles */
@media screen and (max-width: 576px) {
    .supplier-logo {
        width: 150px;
        height: 100px;
    }
}

/* Ajustement du conteneur pour accommoder les plus grandes images */
.supplier-card {
    padding: 2.5rem;
    aspect-ratio: auto; /* Suppression du ratio fixe pour s'adapter aux images */
    min-height: 250px; /* Hauteur minimum pour garantir l'espace */
}

/* Ajustement de la grille */
.suppliers-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Colonnes plus larges */
    gap: 3rem; /* Plus d'espace entre les éléments */
}

@media screen and (max-width: 992px) {
    .suppliers-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    .suppliers-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


.supplier-card:hover .supplier-logo {
    transform: scale(1.05);
}

.supplier-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(196, 30, 58, 0.9);
    color: white;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.supplier-card:hover .supplier-overlay {
    bottom: 0;
}

.supplier-overlay h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.supplier-overlay p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .suppliers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .supplier-card {
        padding: 1.5rem;
    }
}