
        /* Header Hero */
        .secteur-hero {
            position: relative;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -100px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }

        .secteur-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgb(0 0 0 / 63%);
            z-index: 1;
        }

        .secteur-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding-top: 90px;
        }

        .secteur-icon-hero {
            width: 160px;
            height: 160px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: -130px;
            margin-bottom:15px;
        }

        .secteur-icon-hero img {
            width: auto;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }

        .secteur-hero h1 {
            font-size: 4rem;
            font-weight: 500;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }

        .breadcrumb-custom {
            background: rgba(255,255,255,0.2);
            padding: 12px 30px;
            border-radius: 50px;
            display: inline-block;
            backdrop-filter: blur(10px);
        }

        .breadcrumb-custom a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }

        .breadcrumb-custom a:hover {
            text-decoration: underline;
        }

        /* Info Overview */
        .info-overview {
            position: relative;
            z-index: 3;
            border-radius: 20px;
            padding: 50px;
        }

        .info-overview h2 {
            color: #333;
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .info-overview p {
            color: #666;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .info-stats {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            padding-top: 30px;
            border-top: 2px solid #f0f0f0;
        }

        .info-stat-item {
            flex: 1;
            min-width: 200px;
        }

        .info-stat-number {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
        }

        .info-stat-label {
            color: #666;
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 10px;
        }

        .branches-section {
            position: relative;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }


        .branches-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0 0 0 / 31%);
            z-index: 1;
        }
        .branches-section-content{
            position: relative;
            z-index: 2;
            color: white;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #000000ff;
            margin-bottom: 15px;
        }

        .section-header p {
            color: #8c8383;
            font-size: 1.2rem;
        }

        .branche-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border-left: 5px solid;
        }

        .branche-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .branche-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            margin-bottom: 20px;
        }

        .branche-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
            text-align:left;
        }

        .branche-count {
            color: #666;
            font-size: 0.95rem;
            text-align:left;
        }

        /* Cooperatives Section */


        @media (max-width: 768px) {
            .secteur-hero h1 {
                font-size: 2.5rem;
                margin-top: 45px;
            }
            
            .info-overview {
                padding: 30px 20px;
            }
        }

        /* Coop Card */
        .coop-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            animation: fadeInCoop 0.5s ease-out;
        }

        @keyframes fadeInCoop {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .coop-card:hover {
            transform: translateY(-8px);
        }

        /* Card Header */
        .coop-card-header {
            width: 100%;
            height: 160px;
        }

            /* Zoom effect on hover */
        .coop-card-header:hover {
            transform: scale(1.05);
            filter: brightness(0.8);
        }


        .coop-card-logo {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            position: relative;
            z-index: 1;
        }

        /* Card Body */
        .coop-card-body {
            padding: 1rem 1rem;
        }

        .coop-card-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 0.5rem;
            min-height: 45px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 22ch;
        }

        .coop-card-tags {
            display: flex;
            gap: 0.2rem;
            margin-bottom: 0.8rem;
            flex-wrap: wrap;
        }

        .coop-card-tag {
            font-size: 11px;
            background: #f0f0f0;
            padding: 0.3rem 0.6rem;
            border-radius: 12px;
            font-weight: 600;
        }

        .coop-card-location {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .coop-card-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.2;
            margin-bottom: 1rem;
            min-height: 20px;
            white-space: nowrap; 
            overflow: hidden;  
            text-overflow: ellipsis;
            max-width: 30ch;
        }


        /* Card Stats */
        .coop-card-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            padding: 1rem 0;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
            margin-bottom: 1rem;
        }

        .coop-stat {
            text-align: center;
        }

        .coop-stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #d97535;
        }

        .coop-stat-label {
            font-size: 0.75rem;
            color: #999;
            text-transform: uppercase;
            margin-top: 0.3rem;
        }

        /* Card Footer */
        .coop-card-footer {
            display: flex;
            gap: 0.8rem;
        }

        .coop-btn-small {
            flex: 1;
            padding: 0.6rem;
            background: white;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        a {
            color: transparent;
            text-decoration: none;
        }