

        /* Conteneur principal pour centrer le contenu */
        .centered-container {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Fil d'Ariane */
        /*.breadcrumb-custom {
            padding: 1rem 0;
            margin-bottom: 0;
            background-color: transparent;
            text-align: left;
        }
        .breadcrumb-custom .breadcrumb-item a {
            color: #495057;
            text-decoration: none;
        }
        .breadcrumb-custom .breadcrumb-item.active {
            color: #6c757d;
        }*/

        /* Titre principal - Taille réduite */
        .page-title {
            color: var(--primary-green);
            font-size: 2.2rem;
            font-weight: bold;
            margin: 0 0 20px 0;
            padding: 0;
            text-align: left;
            border-bottom: none;
        }

        /* Logo Section */
        .logo-section {
            padding: 20px 0;
            margin-bottom: 10px;
            text-align: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .logo-placeholder {
            width: 150px;
            height: 150px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px var(--light-shadow);
            border: 3px solid var(--primary-yellow);
        }

        .logo-placeholder i {
            font-size: 4rem;
            color: var(--primary-green);
        }

        .org-title {
            color: var(--primary-green);
            font-size: 3rem;
            font-weight: bold;
            margin: 0;
        }

        .org-subtitle {
            color: var(--text-color);
            font-size: 1.3rem;
            margin-top: 5px;
        }

        /* Petit paragraphe sous le logo */
        .logo-description {
            text-align: center;
            color: var(--primary-green);
            font-size: 1.2rem;
            margin: 0 auto 30px;
            max-width: 600px;
        }

        /* Main content */
        .main-content {
            padding: 0;
        }

        .content-section {
            background: white;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 8px var(--light-shadow);
            border-left: 4px solid var(--primary-green);
            text-align: left;
        }

        .content-section p,
        .content-section h3,
        .content-section .highlight-box {
            text-align: left;
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-yellow));
            color: white;
            padding: 25px;
            border-radius: 8px;
            margin: 20px 0;
            border: 2px solid var(--primary-yellow);
        }

        .division-card {
            background: white;
            border-left: 4px solid var(--primary-red);
            padding: 20px;
            margin: 15px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 2px 4px var(--light-shadow);
            transition: transform 0.3s ease;
        }

        .division-card:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 12px var(--light-shadow);
        }

        .division-card h4 {
            color: var(--primary-green);
            margin-bottom: 10px;
        }

        .division-card .icon {
            color: var(--primary-red);
            margin-right: 10px;
        }

        /* Sidebar - Actualités Récentes */
        .sidebar {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            box-shadow: 0 2px 8px var(--light-shadow);
            border-top: 4px solid var(--primary-yellow);
            text-align: left;
        }

        .sidebar h5 {
            color: var(--primary-green);
            margin-bottom: 15px;
            font-weight: bold;
        }

        .news-item {
            background: var(--light-yellow);
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 6px;
            border-left: 3px solid var(--primary-green);
            transition: all 0.3s ease;
        }

        .news-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px var(--light-shadow);
            background-color: white;
        }

        .news-date {
            color: var(--primary-red);
            font-size: 0.9rem;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .news-title {
            color: var(--dark-gray);
            font-weight: 600;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        /* Social sharing */
        .social-share {
            background-color: var(--light-yellow);
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            border: 2px solid var(--primary-yellow);
            text-align: left;
        }

        .social-share h6 {
            color: var(--primary-green);
            margin-bottom: 10px;
        }

        .social-btn {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background-color: var(--primary-green);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-green);
        }

        .social-btn:hover {
            background-color: var(--primary-yellow);
            color: var(--dark-gray);
            border-color: var(--primary-yellow);
        }

        /* Section headings */
        .section-heading {
            color: var(--primary-green);
            margin-top: 30px;
            margin-bottom: 20px;
            font-weight: bold;
            position: relative;
            padding-bottom: 10px;
            text-align: left;
        }

        .section-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
        }


        /* Responsive */
        @media (max-width: 768px) {
            .page-title {
                font-size: 1.8rem;
            }

            .content-section {
                padding: 20px;
            }

            .logo-placeholder {
                width: 100px;
                height: 100px;
            }
            .logo-placeholder i {
                font-size: 3rem;
            }
            .org-title {
                font-size: 2rem;
            }
            .org-subtitle {
                font-size: 1rem;
            }
            .logo-description {
                font-size: 1rem;
            }
            .sidebar {
                margin-top: 30px;
            }
        }
.feature-list {
  list-style-type: none;
  padding-left: 0;
}

.feature-list > li {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid #008751;
}

.department-list {
  counter-reset: department-counter;
  list-style-type: none;
  padding-left: 0;
}

.department-list > li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}

.department-list > li:before {
  counter-increment: department-counter;
  content: counter(department-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #008751;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.department-list ul {
  padding-left: 1rem;
  list-style-type: disc;
}

.department-list h4 {
  margin-bottom: 0.5rem;
  color: #008751;
}