  body {
    margin: 0;
    background: #f7fafc;
  }

  /* --- RESET & CONTAINER (Le cadre global) --- */
  .ml-container {
    max-width: 820px;
    margin: 40px auto;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #2d3748;
  }

  /* --- MENU TRADUCTION --- */
  .lang-dropdown {
    position: relative;
    display: inline-block;
  }

  .lang-dropdown summary {
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4a5568;
    transition: all 0.2s;
  }

  .lang-dropdown summary:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
  }

  .lang-dropdown summary::-webkit-details-marker {
    display: none;
  }

  .lang-dropdown[open] summary {
    background: #edf2f7;
    border-color: #cbd5e0;
    border-radius: 6px 6px 0 0;
  }

  .lang-dropdown .lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    min-width: 160px;
    display: flex;
    flex-direction: column;
    padding: 6px 0;
    z-index: 100;
  }

  .lang-dropdown .lang-menu a {
    display: block;
    padding: 8px 16px;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.15s;
    margin: 0;
  }

  .lang-dropdown .lang-menu a:hover {
    background: #f0fff4;
    color: #22543d;
  }

  .lang-dropdown .lang-menu a strong {
    color: #22543d;
    font-weight: 700;
  }

  /* --- TYPOGRAPHIE GLOBALE --- */
  .ml-container h1,
  .ml-container h2,
  .ml-container h3,
  .ml-container h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.3;
  }

  .ml-container p,
  .ml-container li,
  .ml-container blockquote {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 1.6;
  }

  /* --- HEADER --- */
  .ml-header {
    background-color: #ffffff;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #edf2f7;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  /* --- LOGO & ICÔNE --- */
  .ml-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22543d;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .ml-logo-img {
    height: 36px;
    width: auto;
    display: block;
  }

  /* --- NAVIGATION --- */
  .ml-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .ml-nav a {
    color: #4a5568;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .ml-nav a:hover {
    color: #38a169;
  }
  .ml-nav .ml-nav-cta {
    background-color: #f0fff4;
    color: #22543d;
    padding: 8px 16px;
    border-radius: 6px;
  }
  .ml-nav .ml-nav-cta:hover {
    background-color: #c6f6d5;
    color: #22543d;
  }

  /* --- ARTICLE / BLOG POST --- */
  .ml-blog-post {
    padding: 2.5rem 2rem;
  }
  .ml-blog-post h1 {
    font-size: 34px;
    margin-bottom: 0.5rem;
  }
  .ml-post-meta {
    font-size: 15px;
    color: #718096;
    margin-bottom: 2rem;
    font-style: italic;
  }
  .ml-blog-post h2 {
    font-size: 26px;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
  }
  .ml-blog-post h3 {
    font-size: 22px;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
  }
  .ml-blog-post p {
    margin-bottom: 1.25rem;
  }
  .ml-highlight-quote {
    background-color: #ebf8ff;
    border-left: 4px solid #3182ce;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: #2c5282;
    border-radius: 0 8px 8px 0;
    line-height: 1.5;
  }
  .ml-blog-post ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
  }
  .ml-blog-post li {
    margin-bottom: 0.75rem;
  }

  /* --- CALL TO ACTION (CTA) --- */
  .ml-cta-box {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border: 1px solid #9ae6b4;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
  }
  .ml-cta-box h3 {
    margin-top: 0;
    color: #22543d;
    font-size: 24px;
  }
  .ml-cta-box p {
    color: #2f855a;
    margin-bottom: 1.5rem;
  }
  .ml-cta-button {
    display: inline-block;
    background-color: #38a169;
    color: #ffffff !important;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(56, 161, 105, 0.3);
  }
  .ml-cta-button:hover {
    background-color: #2f855a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(56, 161, 105, 0.4);
  }

  /* --- SOURCES & FOOTER ARTICLE --- */
  .ml-sources-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    font-size: 15px;
    color: #4a5568;
  }
  .ml-sources-section h4 {
    font-size: 18px;
    margin-bottom: 1rem;
  }
  .ml-sources-section ul {
    padding-left: 1.2rem;
    line-height: 1.6;
  }
  .ml-sources-section li {
    font-size: 15px;
    margin-bottom: 0.5rem;
  }
  .ml-disclaimer {
    background-color: #f7fafc;
    padding: 1rem;
    border-radius: 6px;
    font-size: 14px;
    color: #718096;
    margin-top: 1.5rem;
    font-style: italic;
    line-height: 1.5;
  }

  /* --- SITE FOOTER (Bas de page) --- */
  .ml-footer {
    background-color: #f7fafc;
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid #edf2f7;
    font-size: 14px;
    color: #718096;
  }
  .ml-footer-links {
    margin-bottom: 0.75rem;
  }
  .ml-footer-links a {
    color: #4a5568;
    text-decoration: none;
    margin: 0 0.75rem;
    font-weight: 700;
  }
  .ml-footer-links a:hover {
    color: #38a169;
    text-decoration: underline;
  }

  /* --- RESPONSIVE --- */
  @media (max-width: 600px) {
    .ml-container { margin: 10px; border-radius: 12px; font-size: 16px; }
    .ml-header {
      padding: 1rem;
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
    }
    .ml-logo { justify-content: center; }
    .ml-nav {
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    .ml-nav a { margin: 0; font-size: 14px; }
    .ml-blog-post { padding: 1.5rem 1rem; }
    .ml-blog-post h1 { font-size: 28px; }
    .ml-blog-post h2 { font-size: 22px; }
    .ml-blog-post p, .ml-blog-post li { font-size: 16px; }
    .ml-cta-box { padding: 1.5rem 1rem; }
    .ml-cta-box h3 { font-size: 20px; }
    .ml-logo-img { height: 30px; }
    .ml-logo { font-size: 1.3rem; }

    .lang-dropdown .lang-menu {
      right: auto;
      left: 50%;
      transform: translateX(-50%);
      min-width: 140px;
    }
  }
