        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #f8f9fa;
        }
        .secteur-header {
            position: relative;
            background: url("../images/img.png") center/cover no-repeat;
            color: white;
            padding: 5rem 0;
            text-align: center;
            margin-top: -100px;
        }

        .secteur-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0 0 0 / 55%);
            z-index: 1;
        }
        .secteur-header-content{
            position: relative;
            z-index: 2;
            color: white;
            padding-top: 20px;
        }
            

        /* Stats Section */
        .stats-section {
            background: white;
            padding: 40px 0;
            margin-top: -30px;
            position: relative;
            z-index: 3;
        }

        .stat-card {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d18772 0%, #7c4333 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #666;
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Secteurs Grid */
        .secteurs-section {
            padding: 50px 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #333;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            font-size: 1.2rem;
        }

        .secteur-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            cursor: pointer;
            border: 3px solid transparent;
            padding:0px !important;
        }

        .secteur-card-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        /* Ombre sur l’image */
        .secteur-card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
            z-index: 1;
        }

        /* Cercle blanc contenant le logo */
        .secteur-icon {
            position: absolute;
            top: 15px;
            right: 20px;
            width: 120px;
            height: 120px;
            background: white;
            border-radius: 50%;
            display: flex;
            /* align-items: center; */
            justify-content: center;
            z-index: 20;
            overflow: hidden;
            padding: 8px;
        }

        /* Style du logo image */
        .secteur-icon img {
            width: 150px;
            height: 105px;
            object-fit: cover; /* Empêche la déformation */
        }

        .secteur-card-content {
            padding: 30px 25px;
        }

        .secteur-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .secteur-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .secteur-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 2px solid #f0f0f0;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        .meta-item i {
            font-size: 1.2rem;
        }

        .secteur-link {
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .secteur-link:hover {
            color: white;
        }

        @media (max-width: 768px) {
            .secteur-header h1 {
                font-size: 2rem;
                margin-top: 90px;
            }
            
            .secteur-card-image {
                height: 200px;
            }
        }