:root {
            --primary: #006400;
            --secondary: #004d00;
            --accent: #32CD32;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --transition: all 0.3s ease;
            --white: #ffffff;
            --light-green: #e8f5e9;
            --warning: #ff6b35;
            --sidebar-green: #f0f9f0;
            --banner-green-light: #1e7e34;
            --menu-hover: #f0f7f0;
            --menu-border: #d0e0d0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--white);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Layout Structure */
        .page-wrapper {
            display: flex;
            flex: 1;
            /* Réduction de la marge supérieure pour minimiser l'espace */
            margin-top: 200px;
            margin-bottom: auto;
        }

        /* Sidebar - style original conservé */
        .quick-access-sidebar {
            width: 260px;
            background-color: var(--sidebar-green);
            color: var(--dark);
            padding: 20px 15px;
            box-shadow: 5px 0 15px rgba(0,0,0,0.05);
            position: fixed;
            left: 0;
            /* Ajustement de la position pour coller au menu */
            top: 200px;
            height: calc(100vh - 100px);
            overflow-y: auto;
            border-right: 1px solid rgba(0, 100, 0, 0.1);
            border-top: 1px solid rgba(0, 100, 0, 0.1);
            z-index: 98;
        }

        .quick-access-sidebar h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.2rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quick-links {
            margin-bottom: 25px;
            border-bottom: 1px solid rgba(0, 100, 0, 0.1);
            padding-bottom: 20px;
        }

        .quick-links a {
            display: block;
            color: var(--secondary);
            text-decoration: none;
            padding: 10px 12px;
            margin-bottom: 6px;
            background: rgba(0, 100, 0, 0.05);
            border-radius: 5px;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .quick-links a:hover {
            background: rgba(0, 100, 0, 0.1);
            padding-left: 15px;
            color: var(--primary);
        }

        .quick-links a i {
            margin-right: 8px;
            color: var(--accent);
            width: 18px;
            text-align: center;
        }

        .quick-links a:first-child {
            background-color: rgba(0, 100, 0, 0.15);
            border-left: 3px solid var(--accent);
            font-weight: 600;
        }

        .quick-stats {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .quick-stat-item {
            background: rgba(0, 100, 0, 0.05);
            padding: 12px;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 3px solid var(--accent);
        }

        .quick-stat-item:hover {
            background: rgba(0, 100, 0, 0.1);
            transform: translateX(5px);
        }

        .quick-stat-value {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .quick-stat-label {
            font-size: 0.85rem;
            color: var(--secondary);
            font-weight: 500;
        }

        .sidebar-date {
            margin-top: 20px;
            padding: 12px;
            background: rgba(0, 100, 0, 0.08);
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--secondary);
            border-left: 3px solid var(--accent);
        }

        .sidebar-date span {
            font-weight: 600;
            color: var(--primary);
        }

        .main-content {
            flex: 1;
            margin-left: 260px;
            padding: 0;
            width: calc(100% - 260px);
        }

        .container {
            width: 96%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .cont_article {
            width: 80%;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px 0;
        }

        /* ===== HEADER CORRIGÉ (depuis deepseek_html) ===== */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            width: 100%;
        }

        .banner-fixed {
            background-color: var(--banner-green-light);
            color: white;
            text-align: center;
            padding: 10px 0;
            font-weight: 700;
            font-size: 1.3rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            border-bottom: 2px solid #c0d0c0;
        }
        .banner-fixed i {
            color: #ffffff;
            margin: 0 12px;
        }
        .banner-fixed .armc-highlight {
            font-weight: 800;
            text-transform: uppercase;
            background-color: rgba(255,255,255,0.15);
            padding: 3px 10px;
            border-radius: 30px;
            margin: 0 5px;
            color: #ffffff;
        }

        .banner-marquee {
            background-color: #f2f2f2;
            padding: 6px 0;
            border-bottom: 1px solid #ccc;
        }
        .marquee-wrapper {
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .marquee-container {
            flex: 1;
            overflow: hidden;
            position: relative;
            height: 30px;
        }
        .marquee-content {
            display: inline-flex;
            align-items: center;
            gap: 40px;
            white-space: nowrap;
            animation: scrollMarquee 50s linear infinite;
            color: #006400;
            font-size: 0.9rem;
        }
        @keyframes scrollMarquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .marquee-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #006400;
            font-size: 0.9rem;
        }
        .marquee-control {
            background: rgba(0,100,0,0.1);
            border: none;
            color: #006400;
            cursor: pointer;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            margin-left: 10px;
            flex-shrink: 0;
        }

        .logo-wrapper {
            position: absolute;
            left: 30px;
            top: 5px;
            z-index: 1100;
            transition: transform 0.3s;
            background-color: transparent;
        }
        .logo-wrapper:hover {
            transform: scale(1.12);
        }
  

        .main-header {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5px 0;
            background-color: #ffffff;
            border-top: 1px solid var(--menu-border);
            border-bottom: 1px solid var(--menu-border);
            box-shadow: 0 2px 8px rgba(0,60,0,0.03);
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        nav {
            width: 100%;
            display: flex;
            justify-content: center;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2px;
            justify-content: center;
            flex-wrap: nowrap;
            margin: 0;
            padding: 0 10px;
        }
        nav ul li {
            position: relative;
            white-space: nowrap;
        }
        nav ul li a {
            text-decoration: none;
            color: #1e3a2e;
            font-weight: 600;
            font-size: 0.92rem;
            padding: 10px 10px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            border-radius: 24px;
            background-color: transparent;
            letter-spacing: 0.2px;
        }
        nav ul li a i {
            color: #2e6b2e;
            font-size: 1rem;
            width: 1.2rem;
            text-align: center;
            transition: color 0.2s;
        }
        .marquee-item i {
        }
        nav ul li a i.fa-chevron-down {
            font-size: 0.7rem;
            color: #6f8f6f;
            width: auto;
            margin-left: 2px;
        }
        nav ul li a:hover {
            background-color: #e9f3e9;
            color: #006400;
            box-shadow: 0 2px 6px rgba(0,70,0,0.05);
        }
        nav ul li a:hover i {
            color: #006400;
        }
        nav ul li a.active {
            background-color: #e2efe2;
            color: #004d00;
            font-weight: 700;
        }
        nav ul li a.active i {
            color: #004d00;
        }

        nav ul li a::after {
            display: none;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: #ffffff;
            min-width: 250px;
            box-shadow: 0 10px 25px rgba(0,30,0,0.12);
            z-index: 1000;
            border-radius: 16px;
            top: 100%;
            left: 0;
            border: 1px solid #d8e8d8;
            padding: 8px 4px;
            margin-top: 6px;
            backdrop-filter: blur(2px);
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
        .dropdown-content a {
            color: #1e3a2e;
            padding: 12px 18px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            border-radius: 12px;
            margin: 2px 4px;
            background-color: transparent;
            transition: background 0.15s;
        }
        .dropdown-content a i {
            width: 20px;
            color: #2e7d32;
            font-size: 1rem;
        }
        
        .dropdown:hover::before {
      content: '';
      position: absolute;
      bottom: -10px; /* Ajuster selon la hauteur du menu */
      left: 0;
      width: 100%;
      height: 15px; /* Zone de transition entre l'onglet et le sous-menu */
      background: transparent;
      z-index: 1001;
    }
      
        
        
        
        

        /* ===== FIN HEADER ===== */

        /* ===== STYLES ORIGINAUX DE index(1) POUR LE CONTENU ===== */
        .carousel-container {
            width: 75%;
            margin: 0 auto 20px; /* Réduction de la marge inférieure */
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .swiper {
            width: 100%;
            height: 400px;
        }

        .swiper-slide {
            position: relative;
            overflow: hidden;
        }

        .swiper-slide a {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
            text-decoration: none;
            color: inherit;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: brightness(0.95);
        }

        .swiper-slide a:hover img {
            transform: scale(1.08) rotate(0.5deg);
            filter: brightness(1);
        }

        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 64, 0, 0.95), rgba(0, 64, 0, 0.7));
            color: white;
            padding: 20px 25px;
            font-size: 1.1rem;
            font-weight: 500;
            text-align: center;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }

        .swiper-slide a:hover .slide-caption {
            background: linear-gradient(to top, rgba(0, 80, 0, 0.98), rgba(0, 80, 0, 0.8));
            padding-bottom: 25px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: white;
            background: rgba(0, 100, 0, 0.8);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 22px;
            font-weight: bold;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: rgba(0, 100, 0, 0.95);
            transform: scale(1.15);
            box-shadow: 0 5px 15px rgba(0, 100, 0, 0.4);
        }

        .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.6);
            width: 14px;
            height: 14px;
            opacity: 1;
            transition: var(--transition);
        }

        .swiper-pagination-bullet-active {
            background: var(--accent);
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
        }

        .stats {
            background: linear-gradient(rgba(0, 77, 0, 0.9), rgba(0, 77, 0, 0.9)), url('https://images.unsplash.com/1533750349088-cd871a92f312?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            padding: 60px 0;
            margin: 50px 0;
            border-radius: 12px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
        }

        .stats-title h2 {
            color: var(--white);
            font-size: 2.2rem;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
        }

        .stats-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
        }

        .stats-date {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 30px;
            font-weight: 600;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .stat-item {
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }

        .stat-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .stat-item .number {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--accent);
        }

        .stat-item .label {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        .stats-divider {
            height: 2px;
            background: rgba(255, 255, 255, 0.2);
            margin: 30px 0;
        }

        .stats-source {
            margin-top: 50px;
            font-style: italic;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .mission {
            padding: 60px 0;
            position: relative;
        }

        .mission-carousel-container {
            position: relative;
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .mission-swiper {
            width: 100%;
            height: 350px;
            padding: 20px 0;
        }

        .mission-slide {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            border-top: 5px solid var(--accent);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .mission-slide:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .mission-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .mission-slide:hover .mission-icon {
            transform: scale(1.15) rotate(5deg);
            color: var(--accent);
        }

        .mission-slide h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--secondary);
            line-height: 1.3;
        }

        .mission-slide p {
            font-size: 1.05rem;
            line-height: 1.6;
            color: var(--gray);
        }

        .publications {
            background-color: var(--light-green);
            padding: 60px 0;
            position: relative;
        }

        .publications-carousel-container {
            position: relative;
            width: 95%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .publications-swiper {
            width: 100%;
            height: 500px;
            padding: 20px 0;
        }

        .publications-slide {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .publications-slide:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .publications-image {
            height: 250px;
            overflow: hidden;
        }

        .publications-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: brightness(0.95);
        }

        .publications-slide:hover .publications-image img {
            transform: scale(1.12);
            filter: brightness(1);
        }

        .publications-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .publications-content .date {
            color: var(--accent);
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 12px;
            display: block;
        }

        .publications-content h3 {
            font-size: 1.35rem;
            margin-bottom: 15px;
            color: var(--secondary);
            line-height: 1.3;
        }

        .publications-content p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--gray);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .publications-read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .publications-read-more:hover {
            color: var(--accent);
            gap: 12px;
            transform: translateX(5px);
        }

        .leadership {
            padding: 60px 0;
            background-color: var(--white);
            position: relative;
        }

        .leadership-carousel-container {
            position: relative;
            width: 95%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .leadership-swiper {
            width: 100%;
            height: 550px;
            padding: 20px 0;
        }

        .leadership-slide {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .leadership-slide:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .leader-photo {
            height: 250px;
            overflow: hidden;
        }

        .leader-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: brightness(0.95);
        }

        .leadership-slide:hover .leader-photo img {
            transform: scale(1.1);
            filter: brightness(1);
        }

        .leader-info {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .leader-name {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .leader-title {
            color: var(--accent);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }

        .leader-bio {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--gray);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .leader-qualifications {
            font-size: 0.9rem;
            color: var(--secondary);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .leader-social {
            display: flex;
            gap: 15px;
            margin-top: auto;
        }

        .leader-social a {
            color: var(--primary);
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .leader-social a:hover {
            color: var(--accent);
            transform: translateY(-3px);
        }

        .related-articles {
            background-color: var(--light-green);
            padding: 40px 0;
            margin-top: 50px;
        }

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

        .related-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: var(--transition);
        }

        .related-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .related-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .related-card:hover img {
            transform: scale(1.05);
        }

        .related-card-content {
            padding: 20px;
        }

        .related-card h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .related-card p {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 15px;
        }

        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .read-more:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        /* Footer original de index(1) - conservé intact */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 50px 0 0;
            margin-top: auto;
            width: 100%;
            position: relative;
            z-index: 99;
        }

        footer .container {
            position: relative;
            z-index: 100;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
            transform: translateX(3px);
        }

        .contact-list li {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .contact-list i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-right: 10px;
            min-width: 20px;
            margin-top: 3px;
        }

        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
  .page-wrapper {
            display: flex;
            flex: 1;
            margin-top: 200px;
            margin-bottom: auto;
        }

        .quick-access-sidebar {
            width: 260px;
            background-color: var(--sidebar-green);
            color: var(--dark);
            padding: 20px 15px;
            box-shadow: 5px 0 15px rgba(0,0,0,0.05);
            position: fixed;
            left: 0;
            top: 200px;
            height: calc(100vh - 100px);
            overflow-y: auto;
            border-right: 1px solid rgba(0, 100, 0, 0.1);
            border-top: 1px solid rgba(0, 100, 0, 0.1);
            z-index: 98;
        }

        .quick-access-sidebar h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.2rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quick-links {
            margin-bottom: 25px;
            border-bottom: 1px solid rgba(0, 100, 0, 0.1);
            padding-bottom: 20px;
        }

        .quick-links a {
            display: block;
            color: var(--secondary);
            text-decoration: none;
            padding: 10px 12px;
            margin-bottom: 6px;
            background: rgba(0, 100, 0, 0.05);
            border-radius: 5px;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .quick-links a:hover {
            background: rgba(0, 100, 0, 0.1);
            padding-left: 15px;
            color: var(--primary);
        }

        .quick-links a i {
            margin-right: 8px;
            color: var(--accent);
            width: 18px;
            text-align: center;
        }

        .quick-links a:first-child {
            background-color: rgba(0, 100, 0, 0.15);
            border-left: 3px solid var(--accent);
            font-weight: 600;
        }

        .quick-stats {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .quick-stat-item {
            background: rgba(0, 100, 0, 0.05);
            padding: 12px;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 3px solid var(--accent);
        }

        .quick-stat-item:hover {
            background: rgba(0, 100, 0, 0.1);
            transform: translateX(5px);
        }

        .quick-stat-value {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .quick-stat-label {
            font-size: 0.85rem;
            color: var(--secondary);
            font-weight: 500;
        }

        .sidebar-date {
            margin-top: 20px;
            padding: 12px;
            background: rgba(0, 100, 0, 0.08);
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--secondary);
            border-left: 3px solid var(--accent);
        }

        .sidebar-date span {
            font-weight: 600;
            color: var(--primary);
        }

        .main-content {
            flex: 1;
            margin-left: 260px;
            padding: 0;
            width: calc(100% - 260px);
        }

        .container {
            width: 96%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .cont_article {
            width: 80%;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px 0;
        }

        /* ===== HEADER ===== */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            width: 100%;
        }

        .banner-fixed {
            background-color: var(--banner-green-light);
            color: white;
            text-align: center;
            padding: 10px 0;
            font-weight: 700;
            font-size: 1.3rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            border-bottom: 2px solid #c0d0c0;
        }
        .banner-fixed i {
            color: #ffffff;
            margin: 0 12px;
        }
        .banner-fixed .armc-highlight {
            font-weight: 800;
            text-transform: uppercase;
            background-color: rgba(255,255,255,0.15);
            padding: 3px 10px;
            border-radius: 30px;
            margin: 0 5px;
            color: #ffffff;
        }

        .banner-marquee {
            background-color: #f2f2f2;
            padding: 6px 0;
            border-bottom: 1px solid #ccc;
        }
        .marquee-wrapper {
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .marquee-container {
            flex: 1;
            overflow: hidden;
            position: relative;
            height: 30px;
        }
        .marquee-content {
            display: inline-flex;
            align-items: center;
            gap: 40px;
            white-space: nowrap;
            animation: scrollMarquee 50s linear infinite;
            color: #006400;
            font-size: 0.9rem;
        }
        @keyframes scrollMarquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .marquee-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .marquee-item i {
            color: #006400;
            font-size: 0.9rem;
        }
        .marquee-control {
            background: rgba(0,100,0,0.1);
            border: none;
            color: #006400;
            cursor: pointer;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            margin-left: 10px;
            flex-shrink: 0;
        }

      
        .logo-wrapper:hover {
            transform: scale(1.12);
        }
      
        .main-header {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5px 0;
            background-color: #ffffff;
            border-top: 1px solid var(--menu-border);
            border-bottom: 1px solid var(--menu-border);
            box-shadow: 0 2px 8px rgba(0,60,0,0.03);
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        nav {
            width: 100%;
            display: flex;
            justify-content: center;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2px;
            justify-content: center;
            flex-wrap: nowrap;
            margin: 0;
            padding: 0 10px;
        }
        nav ul li {
            position: relative;
            white-space: nowrap;
        }
        nav ul li a {
            text-decoration: none;
            color: #1e3a2e;
            font-weight: 600;
            font-size: 0.92rem;
            padding: 10px 10px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            border-radius: 24px;
            background-color: transparent;
            letter-spacing: 0.2px;
        }
        nav ul li a i {
            color: #2e6b2e;
            font-size: 1rem;
            width: 1.2rem;
            text-align: center;
            transition: color 0.2s;
        }
        nav ul li a i.fa-chevron-down {
            font-size: 0.7rem;
            color: #6f8f6f;
            width: auto;
            margin-left: 2px;
        }
        nav ul li a:hover {
            background-color: #e9f3e9;
            color: #006400;
            box-shadow: 0 2px 6px rgba(0,70,0,0.05);
        }
        nav ul li a:hover i {
            color: #006400;
        }
        nav ul li a.active {
            background-color: #e2efe2;
            color: #004d00;
            font-weight: 700;
        }
        nav ul li a.active i {
            color: #004d00;
        }

        nav ul li a::after {
            display: none;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: #ffffff;
            min-width: 250px;
            box-shadow: 0 10px 25px rgba(0,30,0,0.12);
            z-index: 1000;
            border-radius: 16px;
            top: 100%;
            left: 0;
            border: 1px solid #d8e8d8;
            padding: 8px 4px;
            margin-top: 0;
            backdrop-filter: blur(2px);
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
        .dropdown:hover::before {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 15px;
            background: transparent;
            z-index: 1001;
        }
        .dropdown-content a {
            color: #1e3a2e;
            padding: 12px 18px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            border-radius: 12px;
            margin: 2px 4px;
            background-color: transparent;
            transition: background 0.15s;
        }
        .dropdown-content a i {
            width: 20px;
            color: #2e7d32;
            font-size: 1rem;
        }
        .dropdown-content a:hover {
            background-color: #eef7ee;
            color: #004d00;
            transform: translateX(3px);
        }

        /* Article Styles */
        .article-section {
            padding: 60px 0;
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
        }

        .article-container {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
            max-width: 1000px;
            margin: 0 auto;
        }

        .article-header {
            padding: 40px 40px 20px;
        }

        .article-title {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .article-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            color: var(--gray);
            font-size: 0.9rem;
            flex-wrap: wrap;
        }

        .article-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .article-meta-item i {
            color: var(--accent);
        }

        .article-featured-image {
            width: 100%;
            margin: 0 0 30px;
            text-align: center;
        }

        .article-featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.9rem;
            text-align: center;
        }

        .article-body {
            padding: 0 40px 40px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .article-body h3 {
            color: var(--secondary);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }

        .article-body h4 {
            color: var(--primary);
            margin: 20px 0 10px;
            font-size: 1.2rem;
        }

        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .article-body .definition {
            background-color: var(--light-green);
            padding: 20px;
            border-radius: 8px;
            border-left: 5px solid var(--primary);
            margin: 20px 0;
            font-style: italic;
        }

        .article-body .highlight {
            background-color: var(--light-green);
            padding: 25px;
            border-radius: 8px;
            border-left: 5px solid var(--accent);
            margin: 25px 0;
        }

        .article-body ul, .article-body ol {
            margin-bottom: 20px;
            padding-left: 30px;
        }

        .article-body li {
            margin-bottom: 10px;
        }

        .article-footer {
            padding: 25px 40px;
            background-color: rgba(0, 100, 0, 0.03);
            border-top: 1px solid rgba(0, 100, 0, 0.1);
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            background-color: rgba(0, 100, 0, 0.1);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* Navigation entre articles */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
            padding: 20px 0;
            border-top: 1px solid rgba(0, 100, 0, 0.1);
            border-bottom: 1px solid rgba(0, 100, 0, 0.1);
        }

        .nav-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0, 100, 0, 0.2);
        }

        .nav-button:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 100, 0, 0.3);
        }

        .nav-button i {
            font-size: 1.1rem;
        }

        .nav-button.back-home {
            background-color: var(--accent);
            color: var(--dark);
        }

        .nav-button.back-home:hover {
            background-color: #28a428;
        }

        .publication-counter {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--secondary);
            font-weight: 500;
        }

        .publication-counter span {
            background-color: var(--light-green);
            padding: 8px 15px;
            border-radius: 30px;
            color: var(--primary);
            font-weight: 600;
        }

        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 50px 0 0;
            margin-top: auto;
            width: 100%;
            position: relative;
            z-index: 99;
        }

        footer .container {
            position: relative;
            z-index: 100;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
            transform: translateX(3px);
        }

        .contact-list li {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .contact-list i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-right: 10px;
            min-width: 20px;
            margin-top: 3px;
        }

        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
 .quick-access-sidebar.hidden {
            transform: translateX(-100%);
            opacity: 0;
        }

        .quick-access-sidebar.visible {
            transform: translateX(0);
            opacity: 1;
        }

        .quick-access-sidebar h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.2rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Quick Links first */
        .quick-links {
            margin-bottom: 25px;
            border-bottom: 1px solid rgba(0, 100, 0, 0.1);
            padding-bottom: 20px;
        }

        .quick-links a {
            display: block;
            color: var(--secondary);
            text-decoration: none;
            padding: 10px 12px;
            margin-bottom: 6px;
            background: rgba(0, 100, 0, 0.05);
            border-radius: 5px;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .quick-links a:hover {
            background: rgba(0, 100, 0, 0.1);
            padding-left: 15px;
            color: var(--primary);
        }

        .quick-links a i {
            margin-right: 8px;
            color: var(--accent);
            width: 18px;
            text-align: center;
        }

        /* Quick Statistics - Moved to bottom */
        .quick-stats {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .quick-stat-item {
            background: rgba(0, 100, 0, 0.05);
            padding: 12px;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 3px solid var(--accent);
        }

        .quick-stat-item:hover {
            background: rgba(0, 100, 0, 0.1);
            transform: translateX(5px);
        }

        .quick-stat-value {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .quick-stat-label {
            font-size: 0.85rem;
            color: var(--secondary);
            font-weight: 500;
        }

        .sidebar-date {
            margin-top: 20px;
            padding: 12px;
            background: rgba(0, 100, 0, 0.08);
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--secondary);
            border-left: 3px solid var(--accent);
        }

        .sidebar-date span {
            font-weight: 600;
            color: var(--primary);
        }

        /* Main Content Area */
        .main-content {
            flex: 1;
            margin-left: 260px;
            padding: 0;
            width: calc(100% - 260px);
            transition: margin-left 0.3s ease-in-out, width 0.3s ease-in-out;
        }

        .main-content.sidebar-hidden {
            margin-left: 0;
            width: 100%;
        }

        .container {
            width: 96%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles - Unifié et indépendant */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            width: 100%;
            margin-left: 0;
        }

        .top-bar {
            background-color: var(--secondary);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9rem;
            overflow: hidden;
            position: relative;
            background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, var(--secondary) 100%);
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

    

        .marquee-content {
            display: flex;
            align-items: center;
            gap: 40px;
            white-space: nowrap;
            position: absolute;
            animation: marquee 60s linear infinite;
            animation-play-state: running;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        .marquee-container:hover .marquee-content {
            animation-play-state: paused;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 10px;
        }

        .marquee-item i {
            color: var(--accent);
            font-size: 1rem;
        }

        .marquee-item span {
            font-weight: 500;
            color: var(--white);
        }

        .marquee-control {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--white);
            cursor: pointer;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            z-index: 10;
            transition: var(--transition);
        }

        .marquee-control:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .marquee-indicator {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--white);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            z-index: 10;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(50, 205, 50, 0.7); }
            70% { box-shadow: 0 0 0 5px rgba(50, 205, 50, 0); }
            100% { box-shadow: 0 0 0 0 rgba(50, 205, 50, 0); }
        }

        .social-icons {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .social-icons a {
            color: var(--white);
            margin-left: 15px;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .social-icons a:hover {
            color: var(--accent);
            transform: scale(1.2);
        }

        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 80px;
            margin-right: 15px;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 700;
            line-height: 1.2;
        }

        .logo-text p {
            font:Arial Narrow;
            font-size: 0.8rem; 
            color: var(--gray);
        }

        .nav-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin: 0 10px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            padding: 10px 15px;
            transition: var(--transition);
            position: relative;
            display: block;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--white);
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 5px;
            overflow: hidden;
        }

        .dropdown-content a {
            color: var(--dark);
            font-weight: 400;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid #eee;
        }

        .dropdown-content a:hover {
            background-color: var(--light-green);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Search Button in Header */
        .search-btn {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--primary);
            cursor: pointer;
            padding: 10px;
            border-radius: 50%;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
        }

        .search-btn:hover {
            background-color: var(--light-green);
            color: var(--secondary);
            transform: scale(1.1);
        }

        /* Search Modal */
        .search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: flex-start;
            padding-top: 100px;
        }

        .search-modal.active {
            display: flex;
        }

        .search-modal-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            position: relative;
        }

        .close-search {
            position: absolute;
            right: 15px;
            top: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .close-search:hover {
            background-color: var(--light-green);
            color: var(--primary);
        }

        .search-input-container {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid var(--primary);
            border-radius: 5px;
            font-size: 1rem;
        }

        .search-btn-modal {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .search-btn-modal:hover {
            background: var(--secondary);
        }

        .search-results {
            max-height: 400px;
            overflow-y: auto;
            margin-top: 20px;
        }

        .search-result-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: var(--transition);
        }

        .search-result-item:hover {
            background: var(--light-green);
        }

        .no-results {
            text-align: center;
            padding: 20px;
            color: var(--gray);
            font-style: italic;
        }

        /* Notification Style */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 3000;
            animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s;
            max-width: 300px;
        }

        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }

        /* Article Styles - Nouveau */
        .article-content {
            padding: 60px 0;
            background-color: var(--white);
        }

        .article-header {
            margin-bottom: 40px;
            text-align: center;
        }

        .article-title {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 20px;
        }

        .article-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
        }

        .article-meta {
            color: var(--gray);
            font-size: 1rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .article-meta i {
            color: var(--accent);
        }

        .article-image {
            width: 100%;
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .article-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .article-image:hover img {
            transform: scale(1.02);
        }

        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            font-size: 0.9rem;
            padding: 10px 0;
            background: var(--light-green);
            margin-top: -5px;
            border-radius: 0 0 10px 10px;
        }

        .article-body {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark);
        }

        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .article-body strong {
            color: var(--secondary);
            font-weight: 600;
        }

        .article-body em {
            color: var(--primary);
            font-style: italic;
        }

        .highlight-box {
            background: rgba(0, 100, 0, 0.05);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid var(--accent);
        }

        .highlight-box h3 {
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .highlight-box h3 i {
            color: var(--accent);
        }

        .institution-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }

        .institution-item {
            background: var(--light-green);
            padding: 15px 20px;
            border-radius: 8px;
            flex: 1;
            min-width: 200px;
            border-left: 4px solid var(--accent);
        }

        .institution-item h4 {
            color: var(--primary);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .institution-item p {
            color: var(--secondary);
            font-size: 0.95rem;
            margin: 0;
        }

        /* Footer - Unifié et indépendant */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 50px 0 0;
            margin-top: auto;
            width: 100%;
            position: relative;
            z-index: 99;
        }

        footer .container {
            position: relative;
            z-index: 100;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
            transform: translateX(3px);
        }

        .contact-list li {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .contact-list i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-right: 10px;
            min-width: 20px;
            margin-top: 3px;
        }

        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Responsive Design - UPDATED BREAKPOINTS */
        @media (max-width: 1200px) {
            .page-wrapper {
                flex-direction: column;
                margin-top: 160px;
            }
            
            .quick-access-sidebar {
                position: static;
                width: 100%;
                height: auto;
                top: 0;
                margin-bottom: 20px;
                border-right: none;
                border-top: none;
                border-bottom: 1px solid rgba(0, 100, 0, 0.1);
                transform: none !important;
                opacity: 1 !important;
            }
            
            .main-content {
                margin-left: 0;
                width: 100%;
            }
            
            .main-content.sidebar-hidden {
                margin-left: 0;
                width: 100%;
            }
            
            header {
                position: relative;
            }
            
            .page-wrapper {
                margin-top: 0;
            }
        }

        @media (max-width: 992px) {
            .nav-container {
                flex-wrap: wrap;
            }
            
            nav ul {
                flex-wrap: wrap;
            }
            
            nav ul li {
                margin: 5px;
            }
            
            .article-title {
                font-size: 1.9rem;
            }
            
            .institution-list {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .top-bar-content {
                padding-right: 80px;
            }
            
            .marquee-item {
                font-size: 0.8rem;
            }
            
            .marquee-item i {
                font-size: 0.9rem;
            }
            
            .social-icons {
                right: 10px;
            }
            
            .social-icons a {
                margin-left: 10px;
                font-size: 1rem;
            }
            
            .main-header {
                flex-direction: column;
                gap: 15px;
            }
            
            .logo {
                justify-content: center;
                text-align: center;
            }
            
            .nav-container {
                width: 100%;
                justify-content: center;
                flex-direction: column;
                gap: 10px;
            }
            
            nav ul {
                justify-content: center;
            }
            
            .article-title {
                font-size: 1.7rem;
            }
            
            .article-body {
                font-size: 1rem;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
        }

        @media (max-width: 576px) {
            .top-bar {
                padding: 8px 0;
            }
            
            .marquee-container {
                height: 24px;
            }
            
            .marquee-item {
                font-size: 0.7rem;
                gap: 5px;
            }
            
            .marquee-item i {
                font-size: 0.8rem;
            }
            
            .marquee-control,
            .marquee-indicator {
                width: 20px;
                height: 20px;
                font-size: 0.7rem;
            }
            
            .social-icons {
                display: none;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .article-title {
                font-size: 1.5rem;
            }
            
            .article-content {
                padding: 40px 0;
            }
            
            .institution-item {
                min-width: 100%;
            }
        }
 /* Article Styles - provenant de Visite_Tunisie (1).html */
        .article-content {
            padding: 60px 0;
            background-color: var(--white);
        }

        .article-header {
            margin-bottom: 40px;
            text-align: center;
        }

        .article-title {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 20px;
        }

        .article-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
        }

        .article-meta {
            color: var(--gray);
            font-size: 1rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .article-meta i {
            color: var(--accent);
        }

        .article-image {
            width: 100%;
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .article-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .article-image:hover img {
            transform: scale(1.02);
        }

        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            font-size: 0.9rem;
            padding: 10px 0;
            background: var(--light-green);
            margin-top: -5px;
            border-radius: 0 0 10px 10px;
        }

        .article-body {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark);
        }

        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .article-body strong {
            color: var(--secondary);
            font-weight: 600;
        }

        .article-body ul {
            margin: 20px 0 20px 30px;
        }

        .article-body li {
            margin-bottom: 10px;
            position: relative;
        }

        .article-body li::before {
            content: "•";
            color: var(--accent);
            font-weight: bold;
            font-size: 1.2rem;
            position: absolute;
            left: -15px;
        }

        .conclusion {
            background: rgba(0, 100, 0, 0.05);
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border-left: 5px solid var(--accent);
        }

        .conclusion h3 {
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .conclusion h3 i {
            color: var(--accent);
        }

        /* Navigation entre articles - NOUVEAU */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
            padding: 20px 0;
            border-top: 1px solid rgba(0, 100, 0, 0.1);
            border-bottom: 1px solid rgba(0, 100, 0, 0.1);
        }

        .nav-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0, 100, 0, 0.2);
        }

        .nav-button:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 100, 0, 0.3);
        }

        .nav-button i {
            font-size: 1.1rem;
        }

        .nav-button.back-home {
            background-color: var(--accent);
            color: var(--dark);
        }

        .nav-button.back-home:hover {
            background-color: #28a428;
        }

        .nav-button.disabled {
            opacity: 0.5;
            pointer-events: none;
            cursor: not-allowed;
        }

        .publication-counter {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--secondary);
            font-weight: 500;
        }

        .publication-counter span {
            background-color: var(--light-green);
            padding: 8px 15px;
            border-radius: 30px;
            color: var(--primary);
            font-weight: 600;
        }

        /* Footer original de index(1) - conservé intact */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 50px 0 0;
            margin-top: auto;
            width: 100%;
            position: relative;
            z-index: 99;
        }

        footer .container {
            position: relative;
            z-index: 100;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
            transform: translateX(3px);
        }

        .contact-list li {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .contact-list i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-right: 10px;
            min-width: 20px;
            margin-top: 3px;
        }

        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Responsive - adaptations minimales */
        @media (max-width: 1200px) {
            .page-wrapper {
                flex-direction: column;
                margin-top: 160px;
            }
            .quick-access-sidebar {
                position: static;
                width: 100%;
                height: auto;
                top: 0;
                margin-bottom: 20px;
                border-right: none;
                border-top: none;
                border-bottom: 1px solid rgba(0, 100, 0, 0.1);
            }
            .main-content {
                margin-left: 0;
                width: 100%;
            }
            header {
                position: relative;
            }
            .page-wrapper {
                margin-top: 0;
            }
        }

        @media (max-width: 992px) {
            .cont_article { width: 90%; }
            .article-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .main-header { padding-left: 0; }
            .logo-wrapper { position: relative; left: 20px; top: auto; margin: 10px auto; }
            .logo-wrapper img { height: 100px; width: 100px; }
            nav ul { flex-wrap: wrap; }
            
            .article-title {
                font-size: 1.6rem;
            }
            
            .article-body {
                font-size: 1rem;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            .publication-counter {
                order: -1;
                margin-bottom: 10px;
            }
        }

        /* Quick Links first */
        .quick-links {
            margin-bottom: 25px;
            border-bottom: 1px solid rgba(0, 100, 0, 0.1);
            padding-bottom: 20px;
        }

        .quick-links a {
            display: block;
            color: var(--secondary);
            text-decoration: none;
            padding: 10px 12px;
            margin-bottom: 6px;
            background: rgba(0, 100, 0, 0.05);
            border-radius: 5px;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .quick-links a:hover {
            background: rgba(0, 100, 0, 0.1);
            padding-left: 15px;
            color: var(--primary);
        }

        .quick-links a i {
            margin-right: 8px;
            color: var(--accent);
            width: 18px;
            text-align: center;
        }

        /* Quick Statistics - Moved to bottom */
        .quick-stats {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .quick-stat-item {
            background: rgba(0, 100, 0, 0.05);
            padding: 12px;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 3px solid var(--accent);
        }

        .quick-stat-item:hover {
            background: rgba(0, 100, 0, 0.1);
            transform: translateX(5px);
        }

        .quick-stat-value {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .quick-stat-label {
            font-size: 0.85rem;
            color: var(--secondary);
            font-weight: 500;
        }

        .sidebar-date {
            margin-top: 20px;
            padding: 12px;
            background: rgba(0, 100, 0, 0.08);
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--secondary);
            border-left: 3px solid var(--accent);
        }

        .sidebar-date span {
            font-weight: 600;
            color: var(--primary);
        }

        /* Main Content Area */
        .main-content {
            flex: 1;
            margin-left: 260px;
            padding: 0;
            width: calc(100% - 260px);
            transition: margin-left 0.3s ease-in-out, width 0.3s ease-in-out;
        }

        .main-content.sidebar-hidden {
            margin-left: 0;
            width: 100%;
        }

        .container {
            width: 96%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles - Unifié et indépendant */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            width: 100%;
            margin-left: 0;
        }

        .top-bar {
            background-color: var(--secondary);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9rem;
            overflow: hidden;
            position: relative;
            background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, var(--secondary) 100%);
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

       

        .marquee-content {
            display: flex;
            align-items: center;
            gap: 40px;
            white-space: nowrap;
            position: absolute;
            animation: marquee 60s linear infinite;
            animation-play-state: running;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        .marquee-container:hover .marquee-content {
            animation-play-state: paused;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 10px;
        }

        .marquee-item i {
            color: var(--accent);
            font-size: 1rem;
        }

        .marquee-item span {
            font-weight: 500;
            color: var(--white);
        }

        .marquee-control {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--white);
            cursor: pointer;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            z-index: 10;
            transition: var(--transition);
        }

        .marquee-control:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .marquee-indicator {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--white);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            z-index: 10;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(50, 205, 50, 0.7); }
            70% { box-shadow: 0 0 0 5px rgba(50, 205, 50, 0); }
            100% { box-shadow: 0 0 0 0 rgba(50, 205, 50, 0); }
        }

        .social-icons {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .social-icons a {
            color: var(--white);
            margin-left: 15px;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .social-icons a:hover {
            color: var(--accent);
            transform: scale(1.2);
        }

        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 80px;
            margin-right: 15px;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 700;
            line-height: 1.2;
        }

        .logo-text p {
            font:Arial Narrow;
            font-size: 0.8rem; 
            color: var(--gray);
        }

        .nav-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin: 0 10px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            padding: 10px 15px;
            transition: var(--transition);
            position: relative;
            display: block;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--white);
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 5px;
            overflow: hidden;
        }

        .dropdown-content a {
            color: var(--dark);
            font-weight: 400;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid #eee;
        }

        .dropdown-content a:hover {
            background-color: var(--light-green);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Search Button in Header */
        .search-btn {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--primary);
            cursor: pointer;
            padding: 10px;
            border-radius: 50%;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
        }

        .search-btn:hover {
            background-color: var(--light-green);
            color: var(--secondary);
            transform: scale(1.1);
        }

        /* Search Modal */
        .search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: flex-start;
            padding-top: 100px;
        }

        .search-modal.active {
            display: flex;
        }

        .search-modal-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            position: relative;
        }

        .close-search {
            position: absolute;
            right: 15px;
            top: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .close-search:hover {
            background-color: var(--light-green);
            color: var(--primary);
        }

        .search-input-container {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid var(--primary);
            border-radius: 5px;
            font-size: 1rem;
        }

        .search-btn-modal {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .search-btn-modal:hover {
            background: var(--secondary);
        }

        .search-results {
            max-height: 400px;
            overflow-y: auto;
            margin-top: 20px;
        }

        .search-result-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: var(--transition);
        }

        .search-result-item:hover {
            background: var(--light-green);
        }

        .no-results {
            text-align: center;
            padding: 20px;
            color: var(--gray);
            font-style: italic;
        }

        /* Notification Style */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 3000;
            animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s;
            max-width: 300px;
        }

        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }

        /* Article Styles - New */
        .article-section {
            padding: 60px 0;
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
        }

        .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
            margin-top: 10px;
        }

        /* Article Content */
        .article-container {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
            max-width: 1000px;
            margin: 0 auto;
        }

        .article-header {
            padding: 40px 40px 20px;
        }

        .article-title {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .article-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .article-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .article-meta-item i {
            color: var(--accent);
        }

        .article-featured-image {
            width: 100%;
            margin: 0 0 30px;
            text-align: center;
        }

        .article-featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.9rem;
            text-align: center;
        }

        .article-body {
            padding: 0 40px 40px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .article-body h3 {
            color: var(--secondary);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }

        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .article-body .highlight {
            background-color: var(--light-green);
            padding: 25px;
            border-radius: 8px;
            border-left: 5px solid var(--accent);
            margin: 25px 0;
            font-style: italic;
        }

        .article-footer {
            padding: 25px 40px;
            background-color: rgba(0, 100, 0, 0.03);
            border-top: 1px solid rgba(0, 100, 0, 0.1);
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            background-color: rgba(0, 100, 0, 0.1);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* Appel d'offres specific styles */
        .call-to-action {
            background-color: var(--light-green);
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            border-left: 5px solid var(--primary);
        }

        .call-to-action h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .important-dates {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .date-item {
            background: rgba(0, 100, 0, 0.05);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border-top: 3px solid var(--accent);
        }

        .date-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .date-label {
            font-size: 0.9rem;
            color: var(--secondary);
            font-weight: 500;
        }

        .account-info {
            background-color: rgba(0, 0, 0, 0.02);
            border: 1px dashed var(--primary);
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
        }

        .account-info h4 {
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .scope-item {
            background: rgba(0, 100, 0, 0.03);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid var(--accent);
        }

        .scope-item h4 {
            color: var(--secondary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .scope-item h4 i {
            color: var(--accent);
        }

        /* Related Articles */
        .related-articles {
            padding: 40px 0;
            max-width: 1000px;
            margin: 0 auto;
        }

        .related-title {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .related-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .related-article {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

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

        .related-article img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .related-article-content {
            padding: 20px;
        }

        .related-article h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .related-article p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .related-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .related-link:hover {
            text-decoration: underline;
        }

        /* Footer - Unifié et indépendant */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 50px 0 0;
            margin-top: auto;
            width: 100%;
            position: relative;
            z-index: 99;
        }

        footer .container {
            position: relative;
            z-index: 100;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
            transform: translateX(3px);
        }

        .contact-list li {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .contact-list i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-right: 10px;
            min-width: 20px;
            margin-top: 3px;
        }

        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
/* Quick Statistics - Moved to bottom */
        .quick-stats {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .quick-stat-item {
            background: rgba(0, 100, 0, 0.05);
            padding: 12px;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 3px solid var(--accent);
        }

        .quick-stat-item:hover {
            background: rgba(0, 100, 0, 0.1);
            transform: translateX(5px);
        }

        .quick-stat-value {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .quick-stat-label {
            font-size: 0.85rem;
            color: var(--secondary);
            font-weight: 500;
        }

        .sidebar-date {
            margin-top: 20px;
            padding: 12px;
            background: rgba(0, 100, 0, 0.08);
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--secondary);
            border-left: 3px solid var(--accent);
        }

        .sidebar-date span {
            font-weight: 600;
            color: var(--primary);
        }

        /* Main Content Area */
        .main-content {
            flex: 1;
            margin-left: 260px;
            padding: 0;
            width: calc(100% - 260px);
            transition: margin-left 0.3s ease-in-out, width 0.3s ease-in-out;
        }

        .main-content.sidebar-hidden {
            margin-left: 0;
            width: 100%;
        }

        .container {
            width: 96%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles - Unifié et indépendant */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            width: 100%;
            margin-left: 0;
        }

        .top-bar {
            background-color: var(--secondary);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9rem;
            overflow: hidden;
            position: relative;
            background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, var(--secondary) 100%);
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .marquee-content {
            display: flex;
            align-items: center;
            gap: 40px;
            white-space: nowrap;
            position: absolute;
            animation: marquee 60s linear infinite;
            animation-play-state: running;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        .marquee-container:hover .marquee-content {
            animation-play-state: paused;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 10px;
        }

        .marquee-item i {
            color: var(--accent);
            font-size: 1rem;
        }

        .marquee-item span {
            font-weight: 500;
            color: var(--white);
        }

        .marquee-control {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--white);
            cursor: pointer;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            z-index: 10;
            transition: var(--transition);
        }

        .marquee-control:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .marquee-indicator {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--white);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            z-index: 10;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(50, 205, 50, 0.7); }
            70% { box-shadow: 0 0 0 5px rgba(50, 205, 50, 0); }
            100% { box-shadow: 0 0 0 0 rgba(50, 205, 50, 0); }
        }

        .social-icons {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .social-icons a {
            color: var(--white);
            margin-left: 15px;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .social-icons a:hover {
            color: var(--accent);
            transform: scale(1.2);
        }

        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 80px;
            margin-right: 15px;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 700;
            line-height: 1.2;
        }

        .logo-text p {
            font:Arial Narrow;
            font-size: 0.8rem; 
            color: var(--gray);
        }

        .nav-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin: 0 10px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            padding: 10px 15px;
            transition: var(--transition);
            position: relative;
            display: block;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--white);
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 5px;
            overflow: hidden;
        }

        .dropdown-content a {
            color: var(--dark);
            font-weight: 400;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid #eee;
        }

        .dropdown-content a:hover {
            background-color: var(--light-green);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Search Button in Header */
        .search-btn {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--primary);
            cursor: pointer;
            padding: 10px;
            border-radius: 50%;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
        }

        .search-btn:hover {
            background-color: var(--light-green);
            color: var(--secondary);
            transform: scale(1.1);
        }

        /* Search Modal */
        .search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: flex-start;
            padding-top: 100px;
        }

        .search-modal.active {
            display: flex;
        }

        .search-modal-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            position: relative;
        }

        .close-search {
            position: absolute;
            right: 15px;
            top: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .close-search:hover {
            background-color: var(--light-green);
            color: var(--primary);
        }

        .search-input-container {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid var(--primary);
            border-radius: 5px;
            font-size: 1rem;
        }

        .search-btn-modal {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .search-btn-modal:hover {
            background: var(--secondary);
        }

        .search-results {
            max-height: 400px;
            overflow-y: auto;
            margin-top: 20px;
        }

        .search-result-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: var(--transition);
        }

        .search-result-item:hover {
            background: var(--light-green);
        }

        .no-results {
            text-align: center;
            padding: 20px;
            color: var(--gray);
            font-style: italic;
        }

        /* Notification Style */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 3000;
            animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s;
            max-width: 300px;
        }

        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }

        /* Article Styles - New */
        .article-section {
            padding: 60px 0;
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
        }

        .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
            margin-top: 10px;
        }

        /* Article Content */
        .article-container {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
            max-width: 1000px;
            margin: 0 auto;
        }

        .article-header {
            padding: 40px 40px 20px;
        }

        .article-title {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .article-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .article-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .article-meta-item i {
            color: var(--accent);
        }

        .article-featured-image {
            width: 100%;
            margin: 0 0 30px;
            text-align: center;
        }

        .article-featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.9rem;
            text-align: center;
        }

        .article-body {
            padding: 0 40px 40px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .article-body h3 {
            color: var(--secondary);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }

        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .article-body .highlight {
            background-color: var(--light-green);
            padding: 25px;
            border-radius: 8px;
            border-left: 5px solid var(--accent);
            margin: 25px 0;
            font-style: italic;
        }

        .article-footer {
            padding: 25px 40px;
            background-color: rgba(0, 100, 0, 0.03);
            border-top: 1px solid rgba(0, 100, 0, 0.1);
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            background-color: rgba(0, 100, 0, 0.1);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* Appel d'offres specific styles */
        .call-to-action {
            background-color: var(--light-green);
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            border-left: 5px solid var(--primary);
        }

        .call-to-action h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .important-dates {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .date-item {
            background: rgba(0, 100, 0, 0.05);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border-top: 3px solid var(--accent);
        }

        .date-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .date-label {
            font-size: 0.9rem;
            color: var(--secondary);
            font-weight: 500;
        }

        .account-info {
            background-color: rgba(0, 0, 0, 0.02);
            border: 1px dashed var(--primary);
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
        }

        .account-info h4 {
            color: var(--secondary);
            margin-bottom: 15px;
        }

        /* Related Articles */
        .related-articles {
            padding: 40px 0;
            max-width: 1000px;
            margin: 0 auto;
        }

        .related-title {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .related-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .related-article {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

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

        .related-article img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .related-article-content {
            padding: 20px;
        }

        .related-article h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .related-article p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .related-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .related-link:hover {
            text-decoration: underline;
        }
/* Sidebar - REORGANIZED: Links first, then Statistics */
        .quick-access-sidebar {
            width: 260px;
            background-color: var(--sidebar-green);
            color: var(--dark);
            padding: 20px 15px;
            box-shadow: 5px 0 15px rgba(0,0,0,0.05);
            position: fixed;
            left: 0;
            top: 180px;
            height: calc(100vh - 180px);
            overflow-y: auto;
            border-right: 1px solid rgba(0, 100, 0, 0.1);
            border-top: 1px solid rgba(0, 100, 0, 0.1);
            z-index: 98;
            transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        }

        .quick-access-sidebar.hidden {
            transform: translateX(-100%);
            opacity: 0;
        }

        .quick-access-sidebar.visible {
            transform: translateX(0);
            opacity: 1;
        }

        .quick-access-sidebar h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.2rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Quick Links first */
        .quick-links {
            margin-bottom: 25px;
            border-bottom: 1px solid rgba(0, 100, 0, 0.1);
            padding-bottom: 20px;
        }

        .quick-links a {
            display: block;
            color: var(--secondary);
            text-decoration: none;
            padding: 10px 12px;
            margin-bottom: 6px;
            background: rgba(0, 100, 0, 0.05);
            border-radius: 5px;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .quick-links a:hover {
            background: rgba(0, 100, 0, 0.1);
            padding-left: 15px;
            color: var(--primary);
        }

        .quick-links a i {
            margin-right: 8px;
            color: var(--accent);
            width: 18px;
            text-align: center;
        }

        /* Quick Statistics - Moved to bottom */
        .quick-stats {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .quick-stat-item {
            background: rgba(0, 100, 0, 0.05);
            padding: 12px;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 3px solid var(--accent);
        }

        .quick-stat-item:hover {
            background: rgba(0, 100, 0, 0.1);
            transform: translateX(5px);
        }

        .quick-stat-value {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .quick-stat-label {
            font-size: 0.85rem;
            color: var(--secondary);
            font-weight: 500;
        }

        .sidebar-date {
            margin-top: 20px;
            padding: 12px;
            background: rgba(0, 100, 0, 0.08);
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--secondary);
            border-left: 3px solid var(--accent);
        }

        .sidebar-date span {
            font-weight: 600;
            color: var(--primary);
        }

        /* Main Content Area */
        .main-content {
            flex: 1;
            margin-left: 260px;
            padding: 0;
            width: calc(100% - 260px);
            transition: margin-left 0.3s ease-in-out, width 0.3s ease-in-out;
        }

        .main-content.sidebar-hidden {
            margin-left: 0;
            width: 100%;
        }

        .container {
            width: 96%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles - Unifié et indépendant */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            width: 100%;
            margin-left: 0;
        }

        .top-bar {
            background-color: var(--secondary);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9rem;
            overflow: hidden;
            position: relative;
            background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, var(--secondary) 100%);
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .marquee-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            height: 28px;
        }

        .marquee-content {
            display: flex;
            align-items: center;
            gap: 40px;
            white-space: nowrap;
            position: absolute;
            animation: marquee 60s linear infinite;
            animation-play-state: running;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        .marquee-container:hover .marquee-content {
            animation-play-state: paused;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 10px;
        }

        .marquee-item i {
            color: var(--accent);
            font-size: 1rem;
        }

        .marquee-item span {
            font-weight: 500;
            color: var(--white);
        }

        .marquee-control {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--white);
            cursor: pointer;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            z-index: 10;
            transition: var(--transition);
        }

        .marquee-control:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .marquee-indicator {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--white);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            z-index: 10;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(50, 205, 50, 0.7); }
            70% { box-shadow: 0 0 0 5px rgba(50, 205, 50, 0); }
            100% { box-shadow: 0 0 0 0 rgba(50, 205, 50, 0); }
        }

        .social-icons {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .social-icons a {
            color: var(--white);
            margin-left: 15px;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .social-icons a:hover {
            color: var(--accent);
            transform: scale(1.2);
        }

        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 80px;
            margin-right: 15px;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 700;
            line-height: 1.2;
        }

        .logo-text p {
            font:Arial Narrow;
            font-size: 0.8rem; 
            color: var(--gray);
        }

        .nav-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin: 0 10px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            padding: 10px 15px;
            transition: var(--transition);
            position: relative;
            display: block;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--white);
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 5px;
            overflow: hidden;
        }

        .dropdown-content a {
            color: var(--dark);
            font-weight: 400;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid #eee;
        }

        .dropdown-content a:hover {
            background-color: var(--light-green);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Search Button in Header */
        .search-btn {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--primary);
            cursor: pointer;
            padding: 10px;
            border-radius: 50%;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
        }

        .search-btn:hover {
            background-color: var(--light-green);
            color: var(--secondary);
            transform: scale(1.1);
        }

        /* Search Modal */
        .search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: flex-start;
            padding-top: 100px;
        }

        .search-modal.active {
            display: flex;
        }

        .search-modal-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            position: relative;
        }

        .close-search {
            position: absolute;
            right: 15px;
            top: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .close-search:hover {
            background-color: var(--light-green);
            color: var(--primary);
        }

        .search-input-container {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid var(--primary);
            border-radius: 5px;
            font-size: 1rem;
        }

        .search-btn-modal {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .search-btn-modal:hover {
            background: var(--secondary);
        }

        .search-results {
            max-height: 400px;
            overflow-y: auto;
            margin-top: 20px;
        }

        .search-result-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: var(--transition);
        }

        .search-result-item:hover {
            background: var(--light-green);
        }

        .no-results {
            text-align: center;
            padding: 20px;
            color: var(--gray);
            font-style: italic;
        }

        /* Notification Style */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 3000;
            animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s;
            max-width: 300px;
        }

        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }

        /* Article Styles - New */
        .article-section {
            padding: 60px 0;
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
        }

        .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
            margin-top: 10px;
        }

        /* Article Content */
        .article-container {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
            max-width: 1000px;
            margin: 0 auto;
        }

        .article-header {
            padding: 40px 40px 20px;
        }

        .article-title {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .article-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .article-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .article-meta-item i {
            color: var(--accent);
        }

        .article-featured-image {
            width: 100%;
            margin: 0 0 30px;
            text-align: center;
        }

        .article-featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.9rem;
            text-align: center;
        }

        .article-body {
            padding: 0 40px 40px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .article-body h3 {
            color: var(--secondary);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }

        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .article-body .highlight {
            background-color: var(--light-green);
            padding: 25px;
            border-radius: 8px;
            border-left: 5px solid var(--accent);
            margin: 25px 0;
            font-style: italic;
        }

        .article-footer {
            padding: 25px 40px;
            background-color: rgba(0, 100, 0, 0.03);
            border-top: 1px solid rgba(0, 100, 0, 0.1);
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            background-color: rgba(0, 100, 0, 0.1);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* Related Articles */
        .related-articles {
            padding: 40px 0;
            max-width: 1000px;
            margin: 0 auto;
        }

        .related-title {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .related-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .related-article {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

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

        .related-article img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .related-article-content {
            padding: 20px;
        }

        .related-article h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .related-article p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .related-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .related-link:hover {
            text-decoration: underline;
        }

        /* Footer - Unifié et indépendant */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 50px 0 0;
            margin-top: auto;
            width: 100%;
            position: relative;
            z-index: 99;
        }

        footer .container {
            position: relative;
            z-index: 100;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
            transform: translateX(3px);
        }

        .contact-list li {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .contact-list i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-right: 10px;
            min-width: 20px;
            margin-top: 3px;
        }

        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Responsive Design - UPDATED BREAKPOINTS */
        @media (max-width: 1200px) {
            .page-wrapper {
                flex-direction: column;
                margin-top: 160px;
            }
            
            .quick-access-sidebar {
                position: static;
                width: 100%;
                height: auto;
                top: 0;
                margin-bottom: 20px;
                border-right: none;
                border-top: none;
                border-bottom: 1px solid rgba(0, 100, 0, 0.1);
                transform: none !important;
                opacity: 1 !important;
            }
            
            .main-content {
                margin-left: 0;
                width: 100%;
            }
            
            .main-content.sidebar-hidden {
                margin-left: 0;
                width: 100%;
            }
            
            header {
                position: relative;
            }
            
            .page-wrapper {
                margin-top: 0;
            }
        }

        @media (max-width: 992px) {
            .nav-container {
                flex-wrap: wrap;
            }
            
            nav ul {
                flex-wrap: wrap;
            }
            
            nav ul li {
                margin: 5px;
            }
            
            .section-title h2 {
                font-size: 1.9rem;
            }
            
            .article-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .top-bar-content {
                padding-right: 80px;
            }
            
            .marquee-item {
                font-size: 0.8rem;
            }
            
            .marquee-item i {
                font-size: 0.9rem;
            }
            
            .social-icons {
                right: 10px;
            }
            
            .social-icons a {
                margin-left: 10px;
                font-size: 1rem;
            }
            
            .main-header {
                flex-direction: column;
                gap: 15px;
            }
            
            .logo {
                justify-content: center;
                text-align: center;
            }
            
            .nav-container {
                width: 100%;
                justify-content: center;
                flex-direction: column;
                gap: 10px;
            }
            
            nav ul {
                justify-content: center;
            }
            
            .section-title h2 {
                font-size: 1.7rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .article-header,
            .article-body,
            .article-footer {
                padding: 25px 20px;
            }
            
            .article-title {
                font-size: 1.6rem;
            }
            
            .article-body {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .top-bar {
                padding: 8px 0;
            }
            
            .marquee-container {
                height: 24px;
            }
            
            .marquee-item {
                font-size: 0.7rem;
                gap: 5px;
            }
            
            .marquee-item i {
                font-size: 0.8rem;
            }
            
            .marquee-control,
            .marquee-indicator {
                width: 20px;
                height: 20px;
                font-size: 0.7rem;
            }
            
            .social-icons {
                display: none;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .section-title p {
                font-size: 0.95rem;
            }
            
            .article-section {
                padding: 40px 0;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Footer - Unifié et indépendant */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 50px 0 0;
            margin-top: auto;
            width: 100%;
            position: relative;
            z-index: 99;
        }

        footer .container {
            position: relative;
            z-index: 100;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
            transform: translateX(3px);
        }

        .contact-list li {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .contact-list i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-right: 10px;
            min-width: 20px;
            margin-top: 3px;
        }

        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Responsive Design - UPDATED BREAKPOINTS */
        @media (max-width: 1200px) {
            .page-wrapper {
                flex-direction: column;
                margin-top: 160px;
            }
            
            .quick-access-sidebar {
                position: static;
                width: 100%;
                height: auto;
                top: 0;
                margin-bottom: 20px;
                border-right: none;
                border-top: none;
                border-bottom: 1px solid rgba(0, 100, 0, 0.1);
                transform: none !important;
                opacity: 1 !important;
            }
            
            .main-content {
                margin-left: 0;
                width: 100%;
            }
            
            .main-content.sidebar-hidden {
                margin-left: 0;
                width: 100%;
            }
            
            header {
                position: relative;
            }
            
            .page-wrapper {
                margin-top: 0;
            }
        }

        @media (max-width: 992px) {
            .nav-container {
                flex-wrap: wrap;
            }
            
            nav ul {
                flex-wrap: wrap;
            }
            
            nav ul li {
                margin: 5px;
            }
            
            .section-title h2 {
                font-size: 1.9rem;
            }
            
            .article-title {
                font-size: 1.8rem;
            }
            
            .important-dates {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .top-bar-content {
                padding-right: 80px;
            }
            
            .marquee-item {
                font-size: 0.8rem;
            }
            
            .marquee-item i {
                font-size: 0.9rem;
            }
            
            .social-icons {
                right: 10px;
            }
            
            .social-icons a {
                margin-left: 10px;
                font-size: 1rem;
            }
            
            .main-header {
                flex-direction: column;
                gap: 15px;
            }
            
            .logo {
                justify-content: center;
                text-align: center;
            }
            
            .nav-container {
                width: 100%;
                justify-content: center;
                flex-direction: column;
                gap: 10px;
            }
            
            nav ul {
                justify-content: center;
            }
            
            .section-title h2 {
                font-size: 1.7rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .article-header,
            .article-body,
            .article-footer {
                padding: 25px 20px;
            }
            
            .article-title {
                font-size: 1.6rem;
            }
            
            .article-body {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .top-bar {
                padding: 8px 0;
            }
            
            .marquee-container {
                height: 24px;
            }
            
            .marquee-item {
                font-size: 0.7rem;
                gap: 5px;
            }
            
            .marquee-item i {
                font-size: 0.8rem;
            }
            
            .marquee-control,
            .marquee-indicator {
                width: 20px;
                height: 20px;
                font-size: 0.7rem;
            }
            
            .social-icons {
                display: none;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .section-title p {
                font-size: 0.95rem;
            }
            
            .article-section {
                padding: 40px 0;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Responsive Design - UPDATED BREAKPOINTS */
        @media (max-width: 1200px) {
            .page-wrapper {
                flex-direction: column;
                margin-top: 160px;
            }
            
            .quick-access-sidebar {
                position: static;
                width: 100%;
                height: auto;
                top: 0;
                margin-bottom: 20px;
                border-right: none;
                border-top: none;
                border-bottom: 1px solid rgba(0, 100, 0, 0.1);
                transform: none !important;
                opacity: 1 !important;
            }
            
            .main-content {
                margin-left: 0;
                width: 100%;
            }
            
            .main-content.sidebar-hidden {
                margin-left: 0;
                width: 100%;
            }
            
            header {
                position: relative;
            }
            
            .page-wrapper {
                margin-top: 0;
            }
        }

        @media (max-width: 992px) {
            .nav-container {
                flex-wrap: wrap;
            }
            
            nav ul {
                flex-wrap: wrap;
            }
            
            nav ul li {
                margin: 5px;
            }
            
            .section-title h2 {
                font-size: 1.9rem;
            }
            
            .article-title {
                font-size: 1.8rem;
            }
            
            .important-dates {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .top-bar-content {
                padding-right: 80px;
            }
            
            .marquee-item {
                font-size: 0.8rem;
            }
            
            .marquee-item i {
                font-size: 0.9rem;
            }
            
            .social-icons {
                right: 10px;
            }
            
            .social-icons a {
                margin-left: 10px;
                font-size: 1rem;
            }
            
            .main-header {
                flex-direction: column;
                gap: 15px;
            }
            
            .logo {
                justify-content: center;
                text-align: center;
            }
            
            .nav-container {
                width: 100%;
                justify-content: center;
                flex-direction: column;
                gap: 10px;
            }
            
            nav ul {
                justify-content: center;
            }
            
            .section-title h2 {
                font-size: 1.7rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .article-header,
            .article-body,
            .article-footer {
                padding: 25px 20px;
            }
            
            .article-title {
                font-size: 1.6rem;
            }
            
            .article-body {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .top-bar {
                padding: 8px 0;
            }
            
            .marquee-container {
                height: 24px;
            }
            
            .marquee-item {
                font-size: 0.7rem;
                gap: 5px;
            }
            
            .marquee-item i {
                font-size: 0.8rem;
            }
            
            .marquee-control,
            .marquee-indicator {
                width: 20px;
                height: 20px;
                font-size: 0.7rem;
            }
            
            .social-icons {
                display: none;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .section-title p {
                font-size: 0.95rem;
            }
            
            .article-section {
                padding: 40px 0;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .banner-fixed { font-size: 1rem; }
            .banner-fixed i { margin: 0 5px; }
            
            .article-title {
                font-size: 1.3rem;
            }
            
            .conclusion {
                padding: 20px;
            }
            
            .nav-button {
                width: 100%;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .article-title {
                font-size: 1.3rem;
            }
            
            .highlight-box {
                padding: 20px;
            }
        }
        @media (max-width: 1200px) {
            .page-wrapper {
                flex-direction: column;
                margin-top: 160px;
            }
            .quick-access-sidebar {
                position: static;
                width: 100%;
                height: auto;
                top: 0;
                margin-bottom: 20px;
            }
            .main-content {
                margin-left: 0;
                width: 100%;
            }
            header {
                position: relative;
            }
            .page-wrapper {
                margin-top: 0;
            }
        }

        @media (max-width: 768px) {
            .main-header { padding-left: 0; }
            .logo-wrapper { position: relative; left: 20px; top: auto; margin: 10px auto; }
            .logo-wrapper img { height: 100px; width: 100px; }
            nav ul { flex-wrap: wrap; }
            
            .article-header,
            .article-body,
            .article-footer {
                padding: 25px 20px;
            }
            
            .article-title {
                font-size: 1.6rem;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            .publication-counter {
                order: -1;
                margin-bottom: 10px;
            }
        }
        /* Responsive - adaptations minimales */
                margin-top: 160px;
        @media (max-width: 1200px) {
            .page-wrapper {
                flex-direction: column;
            }
            .quick-access-sidebar {
                position: static;
                width: 100%;
                height: auto;
                top: 0;
                margin-bottom: 20px;
                border-right: none;
                border-top: none;
                border-bottom: 1px solid rgba(0, 100, 0, 0.1);
            }
            .main-content {
                margin-left: 0;
                width: 100%;
            }
            header {
                position: relative;
            }
            .page-wrapper {
                margin-top: 0;
            }
        }

        @media (max-width: 992px) {
            .cont_article { width: 90%; }
            .carousel-container { width: 85%; }
        }

        @media (max-width: 768px) {
            .main-header { padding-left: 0; }
            .logo-wrapper { position: relative; left: 20px; top: auto; margin: 10px auto; }
            .logo-wrapper img { height: 100px; width: 100px; }
            nav ul { flex-wrap: wrap; }
        }

        @media (max-width: 576px) {
            .banner-fixed { font-size: 1rem; }
            .banner-fixed i { margin: 0 5px; }
        }
        
        /* Layout Structure */
        .page-wrapper {
            display: flex;
            flex: 1;
            margin-top: 200px;
            margin-bottom: auto;
        }

        /* Sidebar */
        .quick-access-sidebar {
            width: 260px;
            background-color: var(--sidebar-green);
            color: var(--dark);
            padding: 20px 15px;
            box-shadow: 5px 0 15px rgba(0,0,0,0.05);
            position: fixed;
            left: 0;
            top: 200px;
            height: calc(100vh - 100px);
            overflow-y: auto;
            border-right: 1px solid rgba(0, 100, 0, 0.1);
            border-top: 1px solid rgba(0, 100, 0, 0.1);
            z-index: 98;
        }

        .quick-access-sidebar h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.2rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quick-links {
            margin-bottom: 25px;
            border-bottom: 1px solid rgba(0, 100, 0, 0.1);
            padding-bottom: 20px;
        }

        .quick-links a {
            display: block;
            color: var(--secondary);
            text-decoration: none;
            padding: 10px 12px;
            margin-bottom: 6px;
            background: rgba(0, 100, 0, 0.05);
            border-radius: 5px;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .quick-links a:hover {
            background: rgba(0, 100, 0, 0.1);
            padding-left: 15px;
            color: var(--primary);
        }

        .quick-links a i {
            margin-right: 8px;
            color: var(--accent);
            width: 18px;
            text-align: center;
        }

        .quick-links a:first-child {
            background-color: rgba(0, 100, 0, 0.15);
            border-left: 3px solid var(--accent);
            font-weight: 600;
        }

        .quick-stats {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .quick-stat-item {
            background: rgba(0, 100, 0, 0.05);
            padding: 12px;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 3px solid var(--accent);
        }

        .quick-stat-item:hover {
            background: rgba(0, 100, 0, 0.1);
            transform: translateX(5px);
        }

        .quick-stat-value {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .quick-stat-label {
            font-size: 0.85rem;
            color: var(--secondary);
            font-weight: 500;
        }

        .sidebar-date {
            margin-top: 20px;
            padding: 12px;
            background: rgba(0, 100, 0, 0.08);
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--secondary);
            border-left: 3px solid var(--accent);
        }

        .sidebar-date span {
            font-weight: 600;
            color: var(--primary);
        }

        .main-content {
            flex: 1;
            margin-left: 260px;
            padding: 0;
            width: calc(100% - 260px);
        }

        .container {
            width: 96%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .cont_article {
            width: 80%;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px 0;
        }

        /* ===== HEADER ===== */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            width: 100%;
        }

        .banner-fixed {
            background-color: var(--banner-green-light);
            color: white;
            text-align: center;
            padding: 10px 0;
            font-weight: 700;
            font-size: 1.3rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            border-bottom: 2px solid #c0d0c0;
        }
        .banner-fixed i {
            color: #ffffff;
            margin: 0 12px;
        }
        .banner-fixed .armc-highlight {
            font-weight: 800;
            text-transform: uppercase;
            background-color: rgba(255,255,255,0.15);
            padding: 3px 10px;
            border-radius: 30px;
            margin: 0 5px;
            color: #ffffff;
        }

        .banner-marquee {
            background-color: #f2f2f2;
            padding: 6px 0;
            border-bottom: 1px solid #ccc;
        }
        .marquee-wrapper {
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .marquee-container {
            flex: 1;
            overflow: hidden;
            position: relative;
            height: 30px;
        }
        .marquee-content {
            display: inline-flex;
            align-items: center;
            gap: 40px;
            white-space: nowrap;
            animation: scrollMarquee 50s linear infinite;
            color: #006400;
            font-size: 0.9rem;
        }
        @keyframes scrollMarquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .marquee-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .marquee-item i {
            color: #006400;
            font-size: 0.9rem;
        }
        .marquee-control {
            background: rgba(0,100,0,0.1);
            border: none;
            color: #006400;
            cursor: pointer;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            margin-left: 10px;
            flex-shrink: 0;
        }

     
        .logo-wrapper:hover {
            transform: scale(1.12);
        }
        .logo-wrapper img {
            height: 90px;
            width: 90px;
            /*object-fit: contain; */
            border-radius: 50%;
            /*margin-left: -25px;*/
            /*padding: 5px;*/
            /*background-color: white;*/
            /*box-shadow: 0 10px 25px rgba(0, 40, 0, 0.25); */
        }

        .main-header {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5px 0;
            background-color: #ffffff;
            border-top: 1px solid var(--menu-border);
            border-bottom: 1px solid var(--menu-border);
            box-shadow: 0 2px 8px rgba(0,60,0,0.03);
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        nav {
            width: 100%;
            display: flex;
            justify-content: center;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2px;
            justify-content: center;
            flex-wrap: nowrap;
            margin: 0;
            padding: 0 10px;
        }
        nav ul li {
            position: relative;
            white-space: nowrap;
        }
        nav ul li a {
            text-decoration: none;
            color: #1e3a2e;
            font-weight: 600;
            font-size: 0.92rem;
            padding: 10px 10px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            border-radius: 24px;
            background-color: transparent;
            letter-spacing: 0.2px;
        }
        nav ul li a i {
            color: #2e6b2e;
            font-size: 1rem;
            width: 1.2rem;
            text-align: center;
            transition: color 0.2s;
        }
        nav ul li a i.fa-chevron-down {
            font-size: 0.7rem;
            color: #6f8f6f;
            width: auto;
            margin-left: 2px;
        }
        nav ul li a:hover {
            background-color: #e9f3e9;
            color: #006400;
            box-shadow: 0 2px 6px rgba(0,70,0,0.05);
        }
        nav ul li a:hover i {
            color: #006400;
        }
        nav ul li a.active {
            background-color: #e2efe2;
            color: #004d00;
            font-weight: 700;
        }
        nav ul li a.active i {
            color: #004d00;
        }

        nav ul li a::after {
            display: none;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: #ffffff;
            min-width: 250px;
            box-shadow: 0 10px 25px rgba(0,30,0,0.12);
            z-index: 1000;
            border-radius: 16px;
            top: 100%;
            left: 0;
            border: 1px solid #d8e8d8;
            padding: 8px 4px;
            margin-top: 0;
            backdrop-filter: blur(2px);
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
        .dropdown:hover::before {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
            z-index: 1001;
        }
        .dropdown-content a {
            color: #1e3a2e;
            padding: 12px 18px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            border-radius: 12px;
            margin: 2px 4px;
            background-color: transparent;
            transition: background 0.15s;
        }
        .dropdown-content a i {
            width: 20px;
            color: #2e7d32;
            font-size: 1rem;
        }
        .dropdown-content a:hover {
            background-color: #eef7ee;
            color: #004d00;
            transform: translateX(3px);
        }

        /* ===== STYLES POUR LE FORMULAIRE EMAIL ===== */
        .contact-section {
            padding: 60px 0;
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
        }

        .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
            margin-top: 10px;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            max-width: 1100px;
            margin: 0 auto;
        }

        .contact-info {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            padding: 50px 40px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-info h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent);
        }

        .info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .info-item i {
            font-size: 1.8rem;
            color: var(--accent);
            min-width: 40px;
            text-align: center;
        }

        .info-item h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--white);
        }

        .info-item p, .info-item a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            line-height: 1.5;
        }

        .info-item a:hover {
            color: var(--accent);
            text-decoration: underline;
        }

        .contact-form {
            padding: 50px 40px;
            background-color: var(--white);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary);
        }

        .form-group label i {
            color: var(--accent);
            margin-right: 8px;
            width: 20px;
        }

        .form-control {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 100, 0, 0.3);
        }

        .submit-btn i {
            font-size: 1.2rem;
        }

        .notification {
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .notification.success {
            background-color: #d4edda;
            border-left: 5px solid #28a745;
            color: #155724;
        }

        .notification.error {
            background-color: #f8d7da;
            border-left: 5px solid #dc3545;
            color: #721c24;
        }

        .notification i {
            font-size: 1.3rem;
        }

        .notification .close-btn {
            margin-left: auto;
            cursor: pointer;
            font-size: 1.2rem;
        }

        .required-field::after {
            content: '*';
            color: #dc3545;
            margin-left: 5px;
            font-weight: bold;
        }

        .form-text {
            font-size: 0.85rem;
            color: var(--gray);
            margin-top: 5px;
        }

        .back-home-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background-color: var(--accent);
            color: var(--dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 30px;
            transition: var(--transition);
        }

        .back-home-btn:hover {
            background-color: #28a428;
            transform: translateX(-5px);
        }

        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 50px 0 0;
            margin-top: auto;
            width: 100%;
            position: relative;
            z-index: 99;
        }

        footer .container {
            position: relative;
            z-index: 100;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
            transform: translateX(3px);
        }

        .contact-list li {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .contact-list i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-right: 10px;
            min-width: 20px;
            margin-top: 3px;
        }

        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .page-wrapper {
                flex-direction: column;
                margin-top: 160px;
            }
            .quick-access-sidebar {
                position: static;
                width: 100%;
                height: auto;
                top: 0;
                margin-bottom: 20px;
            }
            .main-content {
                margin-left: 0;
                width: 100%;
            }
            header {
                position: relative;
            }
            .page-wrapper {
                margin-top: 0;
            }
        }

        @media (max-width: 992px) {
            .cont_article { width: 90%; }
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .main-header { padding-left: 0; }
            .logo-wrapper { position: relative; left: 20px; top: auto; margin: 10px auto; }
            .logo-wrapper img { height: 100px; width: 100px; }
            nav ul { flex-wrap: wrap; }
            
            .contact-info, .contact-form {
                padding: 30px 20px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .banner-fixed { font-size: 1rem; }
            .banner-fixed i { margin: 0 5px; }
        }

/* === Correctifs finaux ARMC : responsive + carte footer === */
.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 48px;
    height: 48px;
    margin-left: auto;
    margin-right: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: #155724;
}
.footer-map-card {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    min-height: 220px;
}
.footer-map-card iframe {
    width: 100%;
    min-height: 220px;
    border: 0;
    display: block;
}
.map-coordinates {
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.82);
}

@media (max-width: 992px) {
    .page-wrapper {
        margin-top: 170px;
        display: block;
    }
    .quick-access-sidebar {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-height: none;
        border-right: 0;
        box-shadow: none;
        padding: 16px;
    }
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    .cont_article,
    .carousel-container {
        width: 100%;
        max-width: 100%;
    }
    .logo-wrapper {
        left: 12px;
        top: 8px;
        margin-left: 0px !important;
    }
    .logo-wrapper img {
        width: 90px;
        height: 90px;
    }
    .banner-fixed {
        font-size: 1rem;
        padding: 10px 56px 10px 104px;
    }
    .main-header {
        justify-content: space-between;
        padding: 8px 0;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-container {
        display: none;
        width: 100%;
        padding: 0 12px 10px;
    }
    .nav-container.is-open {
        display: block;
    }
    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 8px 0 0;
    }
    nav ul li,
    nav ul li a {
        width: 100%;
    }
    .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        border: 0;
        min-width: 100%;
        margin-top: 6px;
        padding: 6px 0 0 12px;
    }
    .mission-carousel-container,
    .publications-carousel-container {
        width: 100%;
        padding: 0 18px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        margin-top: 160px;
    }
    .banner-fixed {
        font-size: 0.92rem;
        line-height: 1.35;
        padding: 10px 12px 10px 88px;
        white-space: normal;
    }
    .banner-fixed i:last-child,
    .banner-fixed i:first-child {
        display: none;
    }
    .marquee-wrapper {
        padding: 0 10px;
    }
    .container {
        width: 100%;
        padding: 0 12px;
    }
    .swiper {
        height: 280px;
    }
    .slide-caption {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    .section-title h2 {
        font-size: 1.6rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .logo-wrapper img {
        width: 72px;
        height: 72px;
        margin-left: 0px !important;
    }
    .banner-fixed {
        padding-left: 76px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 38px;
        height: 38px;
    }
    .quick-links a,
    .quick-stat-item {
        padding: 10px;
    }
}


/* ===== CONTACT SECTION AVANT FOOTER ===== */
.public-contact-section {
    padding: 40px 0 10px;
    background: transparent;
}

.public-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 32px;
    background: #f8f8fb;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(8, 20, 40, 0.08);
}

.public-contact-kicker {
    display: inline-block;
    font-size: 1rem;
    color: #1e2c59;
    margin-bottom: 14px;
}

.public-contact-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 0 0 16px;
    color: #001b33;
}

.public-contact-content p {
    color: #6d7686;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.public-alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 600;
}

.public-alert-success {
    background: rgba(14, 118, 55, 0.12);
    color: #0c6c35;
}

.public-alert-error {
    background: rgba(192, 32, 32, 0.1);
    color: #9d1d1d;
}

.public-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.public-form-group {
    margin-bottom: 18px;
}

.public-form-group label {
    display: none;
}

.public-contact-form input,
.public-contact-form textarea {
    width: 100%;
    border: 1px solid #ececf1;
    background: #f0f0f3;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.public-contact-form input:focus,
.public-contact-form textarea:focus {
    border-color: #f47d20;
    box-shadow: 0 0 0 4px rgba(244, 125, 32, 0.12);
    background: #fff;
}

.public-contact-form textarea {
    min-height: 136px;
    resize: vertical;
}

.public-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid #f47d20;
    background: #fff;
    color: #f47d20;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.public-contact-button span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #f47d20;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.public-contact-button:hover {
    background: #fff7f1;
    transform: translateY(-1px);
}

.public-contact-map-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.public-map-meta {
    background: #fff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 8px 28px rgba(10, 31, 68, 0.08);
}

.public-map-meta h3 {
    margin: 0 0 10px;
    color: #20324d;
}

.public-map-meta p {
    margin: 0 0 8px;
    font-size: 0.98rem;
    color: #546074;
}

.public-map-meta i {
    color: var(--primary);
    margin-right: 8px;
}

.public-map-frame {
    flex: 1;
    min-height: 360px;
    border-radius: 18px;
    overflow: hidden;
    background: #e9edf3;
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.08);
}

.public-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.footer-grid-no-map {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-newsletter-form input {
    width: 100%;
    min-height: 42px;
}

img[loading="lazy"] {
    content-visibility: auto;
}

@media (max-width: 992px) {
    .public-contact-card,
    .footer-grid-no-map {
        grid-template-columns: 1fr;
    }

    .public-map-frame,
    .public-map-frame iframe {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .public-contact-section {
        padding: 24px 0 0;
    }

    .public-contact-card {
        padding: 22px;
        gap: 24px;
        border-radius: 20px;
    }

    .public-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .public-contact-button {
        width: 100%;
    }
}


/* === Correctif responsive section contact + carte === */
.public-contact-shell {
    box-sizing: border-box;
}
.public-contact-shell .public-contact-container {
    max-width: none;
    width: 100%;
    margin: 0;
}
.public-contact-card {
    width: 100%;
    box-sizing: border-box;
}
.public-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    width: 100%;
    align-items: stretch;
}
.public-contact-grid > * {
    min-width: 0;
    width: 100%;
}
.public-contact-map-wrap,
.public-contact-map {
    width: 100%;
}
@media (max-width: 1199.98px) {
    .public-contact-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 22px;
    }
}
@media (max-width: 991.98px) {
    .public-contact-shell {
        margin-left: 0;
        width: 100%;
    }
    .public-contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575.98px) {
    .public-contact-row,
    .public-contact-infos {
        grid-template-columns: 1fr;
    }
}


/* ===== Correctif section contact publique v4 ===== */
.public-contact-shell{margin-left:260px;width:calc(100% - 260px);padding:20px 22px 34px;box-sizing:border-box;}
.public-contact-container,.public-contact-section,.public-contact-card,.public-contact-grid,.public-contact-content,.public-contact-form,.public-contact-map-wrap{width:100%;min-width:0;box-sizing:border-box;}
.public-contact-container{max-width:none;margin:0;}
.public-contact-card{overflow:hidden;}
.public-contact-grid{display:flex;align-items:stretch;gap:28px;}
.public-contact-content,.public-contact-map-wrap{flex:0 0 calc(50% - 14px);max-width:calc(50% - 14px);}
.public-contact-content{display:flex;flex-direction:column;}
.public-contact-map-wrap{display:flex;flex-direction:column;align-self:stretch;gap:16px;}
.public-contact-map{display:block;flex:1 1 auto;width:100% !important;min-width:100%;min-height:520px;height:100%;}
@media (max-width:991.98px){.public-contact-shell{margin-left:0;width:100%;padding:18px 14px 26px;}.public-contact-grid{flex-direction:column;}.public-contact-content,.public-contact-map-wrap{flex:0 0 100%;max-width:100%;}.public-contact-map{min-height:360px;}}
@media (max-width:575.98px){.public-contact-map{min-height:300px;}}

/* === ARMC enhancements 2026-03-20 === */
.public-input,.public-contact-form select{width:100%;border:1px solid #ececf1;background:#f0f0f3;border-radius:12px;padding:16px 18px;font-size:1rem;color:#333;outline:none;transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;}
.public-input:focus,.public-contact-form select:focus{border-color:#f47d20;box-shadow:0 0 0 4px rgba(244,125,32,.12);background:#fff;}
.public-textarea{min-height:136px;resize:vertical;}
@media (max-width: 992px){.nav-container{display:none;width:100%;}.nav-container.is-open{display:block;}.dropdown .dropdown-content{display:none !important;}.dropdown.open .dropdown-content{display:block !important;}.main-header{flex-wrap:wrap;}.quick-access-sidebar{margin-bottom:18px;}}


/* === Ajustements Android/mobile ARMC : ciblés sans casser le reste === */
.mobile-quick-panels {
    display: none;
}

.statistics-showcase {
    padding: 30px 0 20px;
    background: #f7faf7;
}

.statistics-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.statistics-card {
    background: #ffffff;
    border: 1px solid rgba(15, 108, 47, 0.10);
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 10px 24px rgba(0, 40, 0, 0.06);
    min-height: 100%;
}

.statistics-card-value {
    color: #0f6c2f;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.statistics-card-title {
    color: #123524;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.statistics-card-text {
    margin: 0;
    color: #60736a;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .statistics-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
    }

    .main-content {
        order: 1;
        margin-left: 0;
        width: 100%;
    }

    .quick-access-sidebar {
        display: none;
    }

    .nav-container {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        z-index: 1200;
        background: #ffffff;
        border-top: 1px solid rgba(15, 108, 47, 0.10);
        border-bottom: 1px solid rgba(15, 108, 47, 0.10);
        box-shadow: 0 14px 32px rgba(0, 40, 0, 0.12);
        max-height: calc(100vh - 150px);
        overflow-y: auto;
    }

    .mobile-quick-panels {
        display: grid;
        gap: 14px;
        padding: 6px 0 8px;
    }

    .mobile-quick-panel {
        background: #f7faf7;
        border: 1px solid rgba(15, 108, 47, 0.08);
        border-radius: 18px;
        padding: 14px;
    }

    .mobile-quick-panel h3 {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0 0 12px;
        color: #0f6c2f;
        font-size: 1.02rem;
    }

    .logo-wrapper {
        position: absolute;
        left: 12px;
        top: 6px;
        margin: 0 !important;
        transform: none !important;
    }

    .logo-wrapper img {
        width: 60px;
        height: 60px;
        margin-left: 0 !important;
        padding: 0;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 50%;
        /*object-fit: contain;*/
    }

    .banner-fixed {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        padding: 8px 14px 8px 82px;
    }

    .main-header {
        position: relative;
        justify-content: flex-end;
        min-height: 62px;
        padding: 6px 12px;
    }

    .cont_article {
        margin-top: 0;
        padding-top: 0;
    }

    .carousel-container,
    .swiper {
        width: 100%;
        max-width: 100%;
    }

    .swiper {
        height: auto;
        min-height: 220px;
    }

    .swiper-slide {
        height: auto;
    }

    .swiper-slide img {
        min-height: 220px;
        object-fit: cover;
    }

    .mission-carousel-container,
    .publications-carousel-container {
        padding: 0 8px 40px;
    }

    .mission-slide,
    .publications-slide {
        height: auto !important;
        min-height: 100%;
    }

    .mission-slide h3,
    .publications-content h3 {
        font-size: 1.02rem;
        line-height: 1.4;
        word-break: break-word;
    }

    .mission-slide p,
    .publications-content p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    #related .row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #related .col-md-6,
    #related .col-lg-4 {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .statistics-showcase {
        padding-top: 20px;
    }

    .statistics-showcase-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
