body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
    :root {
      --bleu-fonce: #1a365d;
      --bleu-moyen: #2d4a7c;
      --or: #d4af37;
      --or-hover: #b8941f;
      --blanc: #ffffff;
      --gris-clair: #f8f9fa;
      --gris-moyen: #e2e8f0;
      --texte: #2d3748;
      --texte-clair: #718096;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      background-color: var(--gris-clair);
      line-height: 1.6;
      color: var(--texte);
    }
    
    .header {
      background-color: var(--bleu-fonce);
      color: var(--blanc);
      padding: 20px 20px 30px;
      position: relative;
      overflow: hidden;
    }
    
    .header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><path fill="white" d="M500,250c138,0,250,112,250,250S638,750,500,750S250,638,250,500S362,250,500,250z M500,50c248,0,450,202,450,450S748,950,500,950S50,748,50,500S252,50,500,50z"/></svg>');
      background-size: 200px;
      animation: float 20s infinite linear;
    }
    
    @keyframes float {
      0% { transform: translate(0, 0) rotate(0deg); }
      100% { transform: translate(-100px, -100px) rotate(360deg); }
    }
    
    .header-content {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
      cursor: pointer;
    }
    
    .logo-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      margin: 0;
      color: var(--blanc);
    }
    
    .logo-text p {
      font-size: 0.9rem;
      margin: 0;
      opacity: 0.8;
      color: var(--blanc);
    }
    
    .nav-links {
      display: flex;
      gap: 25px;
    }
    
    .nav-links a {
      color: var(--blanc);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 8px 0;
      border-bottom: 2px solid transparent;
    }
    
    .nav-links a:hover {
      color: var(--or);
    }
    
    .nav-links a.active {
      color: var(--or);
      font-weight: 600;
      border-bottom: 2px solid var(--or);
    }
    
    .page-title {
      text-align: center;
    }
    
    .page-title h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      margin: 0 0 10px 0;
      font-weight: 700;
      color: var(--blanc);
    }
    
    .page-title p {
      font-size: 1.2rem;
      margin: 0;
      opacity: 0.9;
      color: var(--blanc);
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }
    
    .intro-text {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px;
      font-size: 1.1rem;
      color: var(--texte-clair);
      line-height: 1.7;
    }
    
    .actualites-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
    }
    
    .article-card {
      background: var(--blanc);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid var(--gris-moyen);
    }
    
    .article-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }
    
    .article-image {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, var(--bleu-moyen), var(--bleu-fonce));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blanc);
      font-size: 3rem;
    }
    
    .article-content {
      padding: 30px;
    }
    
    .article-date {
      color: var(--or);
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 10px;
      display: block;
    }
    
    .article-card h3 {
      color: var(--bleu-fonce);
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.4rem;
      margin-bottom: 15px;
      line-height: 1.4;
    }
    
    .article-card p {
      color: var(--texte-clair);
      line-height: 1.6;
      margin-bottom: 20px;
    }
    
    .lire-plus {
      color: var(--bleu-moyen);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    
    .lire-plus:hover {
      color: var(--or);
      gap: 10px;
    }
    
    .categories {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    
    .categorie-btn {
      padding: 10px 20px;
      background: var(--blanc);
      color: var(--texte);
      border: 2px solid var(--gris-moyen);
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
    }
    
    .categorie-btn.active,
    .categorie-btn:hover {
      background: var(--or);
      color: var(--bleu-fonce);
      border-color: var(--or);
    }
    
    .newsletter-section {
      background: linear-gradient(135deg, var(--bleu-moyen) 0%, var(--bleu-fonce) 100%);
      color: var(--blanc);
      padding: 50px;
      border-radius: 15px;
      text-align: center;
      margin-top: 60px;
    }
    
    .newsletter-section h2 {
      font-family: 'Cormorant Garamond', serif;
      margin-bottom: 20px;
    }
    
    .newsletter-form {
      max-width: 500px;
      margin: 0 auto;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .newsletter-input {
      flex: 1;
      min-width: 250px;
      padding: 12px 15px;
      border: none;
      border-radius: 25px;
      font-size: 1rem;
    }
    
    .cta-button {
      display: inline-block;
      padding: 12px 25px;
      background: var(--or);
      color: var(--bleu-fonce);
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }
    
    .cta-button:hover {
      background: var(--or-hover);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
    
    /* Footer Moderne */
    .footer-nh { 
      background: linear-gradient(135deg, #0f1a30 0%, var(--bleu-fonce) 100%); 
      color: var(--gris-moyen); 
      padding: 80px 20px 30px; 
      position: relative;
      overflow: hidden;
    }

    .footer-nh::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path fill="white" d="M50,20c16.6,0,30,13.4,30,30S66.6,80,50,80S20,66.6,20,50S33.4,20,50,20z M50,5c24.9,0,45,20.1,45,45S74.9,95,50,95S5,74.9,5,50S25.1,5,50,5z"/></svg>');
      background-size: 150px;
      animation: float 25s infinite linear;
    }
    
    .footer-wrapper { 
      display: flex; 
      justify-content: space-between; 
      flex-wrap: wrap; 
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    
    .footer-column { 
      flex: 1; 
      min-width: 220px; 
      margin: 20px; 
    }
    
    .footer-column h3 { 
      color: var(--blanc); 
      margin-bottom: 25px; 
      font-size: 1.3rem;
      position: relative;
      padding-bottom: 15px;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
    }
    
    .footer-column h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, var(--or), var(--bleu-moyen));
      border-radius: 2px;
    }
    
    .footer-column ul { 
      list-style: none; 
      padding: 0; 
    }
    
    .footer-column li a { 
      color: var(--gris-moyen); 
      text-decoration: none; 
      line-height: 2.2; 
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .footer-column li a:hover { 
      color: var(--or); 
      transform: translateX(8px);
    }
    
    .footer-bottom { 
      text-align: center; 
      margin-top: 60px; 
      border-top: 1px solid rgba(255,255,255,0.1); 
      padding-top: 30px; 
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }
    
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
      border-radius: 50%;
      color: var(--blanc);
      transition: all 0.3s ease;
      text-decoration: none;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.1);
    }
    
    .social-icons a:hover {
      background: linear-gradient(135deg, var(--or) 0%, var(--or-hover) 100%);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    }
    /* CORRECTIONS POUR L'AFFICHAGE MOBILE */
@media screen and (max-width: 768px) {
  /* Assurer que le contenu remplit toute la largeur */
  body, html {
    width: 100%;
    overflow-x: hidden;
    position: relative;
  }
  
  /* Supprimer les marges et padding inutiles */
  .container {
    padding: 20px 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Ajuster la grille des articles */
  .actualites-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  /* Ajuster les cartes d'articles */
  .article-card {
    width: 100%;
    margin: 0;
  }
  
  /* Ajuster le header */
  .header {
    padding: 15px 15px 25px;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .page-title h1 {
    font-size: 2.2rem;
  }
  
  .page-title p {
    font-size: 1rem;
  }
  
  /* Ajuster les boutons de catégorie */
  .categories {
    gap: 10px;
  }
  
  .categorie-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  
  /* Ajuster la section newsletter */
  .newsletter-section {
    padding: 30px 20px;
    margin-top: 40px;
  }
  
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-input {
    min-width: 100%;
    margin-bottom: 10px;
  }
  
  /* Ajuster le footer */
  .footer-nh {
    padding: 50px 15px 20px;
  }
  
  .footer-column {
    min-width: 100%;
    margin: 15px 0;
  }
}

/* Règles pour les très petits écrans */
@media screen and (max-width: 480px) {
  .article-content {
    padding: 20px;
  }
  
  .article-card h3 {
    font-size: 1.2rem;
  }
  
  .intro-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  /* Empêcher le zoom sur les champs de formulaire iOS */
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* Règles générales pour empêcher le débordement horizontal */
* {
  box-sizing: border-box;
}

img, svg {
  max-width: 100%;
  height: auto;
}

/* S'assurer que les éléments flexibles ne débordent pas */
.footer-wrapper, .nav-container, .newsletter-form {
  flex-wrap: wrap;
}
  