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

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(180deg, #e8f5e9 0%, #f1f8f4 50%, #e8f5e9 100%);
            color: #2d4a2d;
            min-height: 100vh;
        }

        header {
            background: white;
            padding: 1rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            transition: transform 0.3s ease;
        }

        header.hidden {
            transform: translateY(-100%);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #6b9b6b, #8fbc8f);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            box-shadow: 0 2px 8px rgba(107, 155, 107, 0.3);
        }

        .site-title {
            color: #2d4a2d;
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            background: none;
            border: none;
            color: #5a8a5a;
            cursor: pointer;
            font-size: 1rem;
            font-family: 'Georgia', serif;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #6b9b6b;
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #2d4a2d;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link.active {
            color: #2d4a2d;
            font-weight: 600;
        }

        .nav-link.active::after {
            width: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 2rem 2rem;
        }

        .page {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .page.active {
            display: block;
        }


        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero {
            text-align: center;
            padding: 3rem 0;
        }

        .coat-of-arms {
            max-width: 300px;
            margin: 1rem auto;
        }

        .coat-of-arms img {
            width: 100%;
            height: auto;
        }

        .card {
            background: white;
            padding: 1rem;
            margin: 2rem 0;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #6b9b6b;
        }

        h2 {
            color: #2d4a2d;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            border-bottom: 2px solid #a8d5a8;
            padding-bottom: 0.5rem;
        }

        h3 {
            color: #3a5a3a;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .member-section {
            background: white;
            padding: 2.5rem;
            margin: 2rem 0;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #6b9b6b;
        }

        .member-header {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .member-image {
            width: 150px;
            height: 150px;
            border-radius: 10px;
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #6b9b6b;
            box-shadow: 0 4px 10px rgba(107, 155, 107, 0.2);
            flex-shrink: 0;
        }

        .member-info {
            flex: 1;
            min-width: 200px;
        }

        .member-title {
            color: #6b9b6b;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .member-name {
            color: #2d4a2d;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .member-subtitle {
            color: #5a8a5a;
            font-size: 1rem;
            font-style: italic;
        }

        .member-content {
            color: #3a5a3a;
            line-height: 1.8;
            font-size: 1rem;
        }

        .member-content p {
            margin-bottom: 1rem;
        }

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

        .member-card {
            background: linear-gradient(135deg, #f5f9f5 0%, #e8f5e8 100%);
            padding: 1.5rem;
            border-radius: 8px;
            border: 2px solid #a8d5a8;
            transition: all 0.3s ease;
        }

        .member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(107, 155, 107, 0.3);
        }

        .member-card .member-title {
            color: #2d4a2d;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .member-card .member-name {
            color: #5a8a5a;
            font-size: 1rem;
        }

        .organigramme-placeholder {
            background: #f5f9f5;
            border: 3px dashed #6b9b6b;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 10px;
            margin: 2rem 0;
            color: #5a8a5a;
            font-style: italic;
        }

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

        .link-card {
            background: linear-gradient(135deg, #6b9b6b 0%, #8fbc8f 100%);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(107, 155, 107, 0.4);
        }

        .link-card h3 {
            color: white;
            margin: 0;
            font-size: 1.4rem;
        }

        .link-card p {
            color: #f5f9f5;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }

        .link-input {
            display: none;
            width: 100%;
            padding: 0.5rem;
            margin-top: 1rem;
            border: 2px solid #4a7a4a;
            border-radius: 5px;
            font-size: 0.9rem;
        }

        footer {
            background: white;
            border-top: 1px solid #e0e0e0;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-logo {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6b9b6b, #8fbc8f);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.8rem;
            box-shadow: 0 2px 8px rgba(107, 155, 107, 0.3);
        }

        .footer-title {
            color: #2d4a2d;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .footer-link {
            color: #5a8a5a;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-link:hover {
            color: #2d4a2d;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e0e0e0;
            color: #5a8a5a;
            font-size: 0.9rem;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #5a8a5a;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .site-title {
                font-size: 1rem;
            }

            .logo {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            nav {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
                gap: 0;
            }

            nav.open {
                display: flex;
            }

            .nav-link {
                width: 100%;
                text-align: left;
                padding: 1rem;
                border-bottom: 1px solid #f0f0f0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .container {
                padding: 5rem 1rem 1rem;
            }

            .member-header {
                flex-direction: column;
                text-align: center;
            }

            .member-name {
                font-size: 1.5rem;
            }

            .member-grid, .link-grid {
                grid-template-columns: 1fr;
            }

            .coat-of-arms {
                max-width: 200px;
                padding: 1rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
        }

.liens{
    text-decoration: none;
    color: #256070;
}
.liens:hover {
    color: blue;
}