  :root {
            --primary: green;
            --primary-dark: green;
            --primary-light: #4cce7b;
            --primary-extra-light: #e6f7ed;
            --secondary: #ff9f1c;
            --text: #1e293b;
            --text-light: #64748b;
            --background: #f8fafc;
            --white: #ffffff;
            --border: #e2e8f0;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--background);
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: var(--white);
            padding: 20px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--primary);
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
            box-shadow: var(--shadow-light);
        }

        .logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .back-btn {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            box-shadow: var(--shadow-light);
        }

        .back-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        /* Section principale */
        .privacy-hero {
            background: var(--gradient);
            color: white;
            padding: 100px 0 70px;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .privacy-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .privacy-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
        }

        .privacy-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
            position: relative;
        }

        /* Contenu principal */
        .privacy-content {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
        }

        .sidebar {
            flex: 0 0 280px;
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .toc {
            background: var(--white);
            border-radius: 16px;
            padding: 28px;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--primary);
        }

        .toc h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .toc ul {
            list-style: none;
        }

        .toc li {
            margin-bottom: 12px;
            position: relative;
        }

        .toc a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.2s ease;
            display: block;
            padding: 10px 14px;
            border-radius: 8px;
            font-weight: 500;
        }

        .toc a:hover, .toc a.active {
            color: var(--primary);
            background: var(--primary-extra-light);
            transform: translateX(5px);
        }

        .content {
            flex: 1;
        }

        .content-card {
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            border-top: 5px solid var(--primary);
        }

        .last-updated {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 12px;
            background: var(--primary-extra-light);
            color: var(--primary-dark);
            font-weight: 600;
            box-shadow: var(--shadow-light);
        }

        .privacy-section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border);
            position: relative;
        }

        .privacy-section:last-of-type {
            border-bottom: none;
        }

        .privacy-section h2 {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
        }

        .privacy-section h2::before {
            content: "";
            width: 6px;
            height: 30px;
            background: var(--primary);
            border-radius: 3px;
        }

        .privacy-section h3 {
            font-size: 1.3rem;
            color: var(--text);
            margin: 24px 0 16px;
            padding-left: 15px;
            border-left: 3px solid var(--primary-light);
        }

        .privacy-section p {
            margin-bottom: 16px;
            color: var(--text);
            line-height: 1.7;
        }

        .privacy-section ul {
            margin: 16px 0 16px 24px;
        }

        .privacy-section li {
            margin-bottom: 10px;
            position: relative;
            line-height: 1.6;
            padding-left: 10px;
        }

        .privacy-section ul li::before {
            content: '•';
            color: var(--primary);
            font-weight: bold;
            position: absolute;
            left: -16px;
            font-size: 1.2rem;
        }

        .highlight-box {
            background: var(--primary-extra-light);
            border-left: 4px solid var(--primary);
            padding: 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: var(--shadow-light);
        }

        .contact-info {
            background: var(--primary-extra-light);
            padding: 28px;
            border-radius: 16px;
            margin-top: 24px;
            box-shadow: var(--shadow-light);
        }

        .contact-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            transition: transform 0.3s ease;
            border: 1px solid var(--border);
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .contact-item i {
            color: var(--primary);
            font-size: 1.3rem;
            width: 24px;
            text-align: center;
        }

        /* Footer */
        footer {
            background: #1e293b;
            color: white;
            padding: 60px 0 20px;
            position: relative;
        }

        footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-about, .footer-links, .footer-contact {
            margin-bottom: 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-logo span {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
        }

        .footer-about p {
            margin-bottom: 20px;
            line-height: 1.7;
            color: #cbd5e1;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links h3, .footer-contact h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after, .footer-contact h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-contact p {
            margin-bottom: 16px;
            color: #cbd5e1;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-contact i {
            color: var(--primary);
            width: 18px;
            text-align: center;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Bouton scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            z-index: 100;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
        }

        /* Logo personnalisé */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-image {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient);
            border-radius: 12px;
            color: white;
            font-weight: 800;
            font-size: 1.5rem;
            box-shadow: var(--shadow-light);
        }

        .logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .privacy-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .sidebar {
                position: static;
                flex: none;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .privacy-hero {
                padding: 80px 0 50px;
            }

            .privacy-hero h1 {
                font-size: 2.3rem;
            }

            .content-card {
                padding: 30px 20px;
                border-radius: 14px;
            }

            .privacy-section h2 {
                font-size: 1.4rem;
            }

            .contact-details {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .privacy-hero h1 {
                font-size: 2rem;
            }

            .content-card {
                padding: 20px 16px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .privacy-section ul {
                margin-left: 20px;
            }
            .logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  height: 50px;
  width: 50px;
  border-radius: 10px;
  object-fit: cover;
}

.logo-text {
  font-size: 1.6em;
  font-weight: 700;
  color: white; /* ou var(--green) selon le fond */
  letter-spacing: 1px;
}

        }
   