    />
    <style>
      /* Variables CSS pour s'assurer qu'elles sont disponibles */
      :root {
        --black: #0a0a0a;
        --charcoal: #1a1a1a;
        --silver: #8a8a8a;
        --platinum: #c5c5c5;
        --white: #ffffff;
        --cream: #faf9f7;
        --accent: #ce1c1c;
        --accent-light: rgba(206, 28, 28, 0.1);
      }

      body {
        background: var(--cream, #faf9f7);
        color: var(--charcoal, #1a1a1a);
      }

      /* Styles spécifiques pour la page politique de confidentialité */
      .privacy-container {
        padding-top: 140px; /* Compense le header fixe */
        min-height: 100vh;
        max-width: 1000px;
        margin: 0 auto;
        padding-left: 60px;
        padding-right: 60px;
        padding-bottom: 80px;
      }

      .privacy-header {
        text-align: center;
        margin-bottom: 50px;
        border-bottom: 1px solid rgba(26, 26, 26, 0.1);
        padding-bottom: 30px;
        margin-top: 20px;
      }

      .privacy-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(48px, 6vw, 72px);
        font-weight: 300;
        color: var(--charcoal, #1a1a1a);
        margin-bottom: 20px;
        animation: fadeInUp 0.8s ease 0.2s both;
      }

      .privacy-subtitle {
        font-size: 18px;
        color: var(--silver, #8a8a8a);
        font-weight: 300;
        animation: fadeInUp 0.8s ease 0.4s both;
      }

      .last-updated {
        display: inline-block;
        padding: 8px 16px;
        background: var(--accent-light, rgba(206, 28, 28, 0.1));
        color: var(--accent, #ce1c1c);
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 20px;
        margin-top: 20px;
        animation: fadeInUp 0.8s ease 0.6s both;
      }

      .privacy-content {
        animation: fadeInUp 0.8s ease 0.8s both;
      }

      .privacy-section {
        background: var(--white, #ffffff);
        border: 1px solid rgba(26, 26, 26, 0.08);
        border-radius: 0;
        padding: 40px;
        margin-bottom: 40px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
      }

      .privacy-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(206, 28, 28, 0.01),
          transparent
        );
        transition: left 0.6s ease;
      }

      .privacy-section:hover::before {
        left: 100%;
      }

      .privacy-section:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        border-color: rgba(26, 26, 26, 0.15);
      }

      .privacy-section h2 {
        font-family: "Cormorant Garamond", serif;
        font-size: 28px;
        font-weight: 400;
        color: var(--charcoal, #1a1a1a);
        margin-bottom: 25px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--accent, #ce1c1c);
        position: relative;
      }

      .privacy-section h2::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--accent, #ce1c1c);
      }

      .privacy-section h3 {
        font-family: "Inter", sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: var(--charcoal, #1a1a1a);
        margin: 25px 0 15px 0;
      }

      .privacy-section p {
        font-size: 15px;
        line-height: 1.8;
        color: var(--charcoal, #1a1a1a);
        margin-bottom: 20px;
        font-weight: 300;
      }

      .privacy-section p:last-child {
        margin-bottom: 0;
      }

      .privacy-section strong {
        font-weight: 500;
        color: var(--charcoal, #1a1a1a);
      }

      .privacy-section ul {
        margin: 20px 0;
        padding-left: 0;
        list-style: none;
      }

      .privacy-section li {
        font-size: 15px;
        line-height: 1.8;
        color: var(--charcoal, #1a1a1a);
        margin-bottom: 12px;
        padding-left: 25px;
        position: relative;
        font-weight: 300;
      }

      .privacy-section li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 12px;
        width: 6px;
        height: 6px;
        background: var(--accent, #ce1c1c);
        border-radius: 50%;
      }

      .privacy-section a {
        color: var(--accent, #ce1c1c);
        text-decoration: none;
        transition: opacity 0.3s ease;
      }

      .privacy-section a:hover {
        opacity: 0.7;
      }

      /* Highlight box pour les informations importantes */
      .highlight-box {
        background: rgba(206, 28, 28, 0.03);
        border-left: 3px solid var(--accent, #ce1c1c);
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 8px 8px 0;
      }

      .highlight-box p {
        margin-bottom: 0;
        font-weight: 400;
      }

      /* Navigation de retour */
      .back-navigation {
        position: fixed;
        top: 40px;
        left: 60px;
        z-index: 1001; /* Au-dessus du header */
        animation: fadeIn 1s ease 0.8s both;
      }

      .back-link {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--silver, #8a8a8a);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        padding: 12px 20px;
        background: rgba(250, 249, 247, 0.8);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(26, 26, 26, 0.08);
        border-radius: 50px;
      }

      .back-link:hover {
        color: var(--accent, #ce1c1c);
        transform: translateX(-5px);
        border-color: rgba(206, 28, 28, 0.2);
      }

      .back-arrow {
        font-size: 16px;
        transition: transform 0.3s ease;
      }

      .back-link:hover .back-arrow {
        transform: translateX(-3px);
      }

      /* Contact box */
      .contact-box {
        background: linear-gradient(
          135deg,
          var(--charcoal, #1a1a1a) 0%,
          #2a2a2a 100%
        );
        color: var(--cream, #faf9f7);
        padding: 40px;
        border-radius: 8px;
        margin: 40px 0;
        text-align: center;
      }

      .contact-box h3 {
        color: var(--cream, #faf9f7);
        margin-bottom: 15px;
      }

      .contact-box p {
        color: rgba(250, 249, 247, 0.8);
        margin-bottom: 0;
      }

      .contact-box a {
        color: var(--cream, #faf9f7);
        font-weight: 500;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .privacy-container {
          padding-top: 120px;
          padding-left: 30px;
          padding-right: 30px;
          padding-bottom: 60px;
        }

        .back-navigation {
          top: 30px;
          left: 30px;
        }

        .privacy-section {
          padding: 30px 25px;
          margin-bottom: 30px;
        }

        .privacy-section h2 {
          font-size: 24px;
        }

        .privacy-header {
          margin-bottom: 40px;
          padding-bottom: 20px;
        }

        .contact-box {
          padding: 30px 20px;
        }
      }

      /* Animation pour le contenu qui apparaît */
      .privacy-section {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInSection 0.6s ease forwards;
      }

      .privacy-section:nth-child(1) {
        animation-delay: 0.1s;
      }
      .privacy-section:nth-child(2) {
        animation-delay: 0.2s;
      }
      .privacy-section:nth-child(3) {
        animation-delay: 0.3s;
      }
      .privacy-section:nth-child(4) {
        animation-delay: 0.4s;
      }
      .privacy-section:nth-child(5) {
        animation-delay: 0.5s;
      }
      .privacy-section:nth-child(6) {
        animation-delay: 0.6s;
      }
      .privacy-section:nth-child(7) {
        animation-delay: 0.7s;
      }
      .privacy-section:nth-child(8) {
        animation-delay: 0.8s;
      }
      .privacy-section:nth-child(9) {
        animation-delay: 0.9s;
      }

      @keyframes fadeInSection {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
    </style>
