
   /* Variables CSS */
   :root {
      --bleu-marial: #02193b;
      --bleu-vierge: #002b6b;
      --jaune-or: #ffd700;
      --blanc-pur: #ffffff;
      --gris-clair: #f8f9fa;
      --gris-moyen: #e9ecef;
      --texte-primaire: #2c3e50;
      --texte-secondaire: #5a6c7d;
      --ombre-legere: 0 2px 8px rgba(2, 25, 59, 0.08);
      --ombre-moyenne: 0 4px 16px rgba(2, 25, 59, 0.12);
      --ombre-forte: 0 8px 32px rgba(2, 25, 59, 0.16);
   }

   /* Reset et styles de base */
   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
   }

   body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--texte-primaire);
      background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
      margin: 0;
      padding: 0;
   }

   /* Container */
   .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
   }

   /* Row et colonnes */
   .row {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -15px;
   }

   .col-12 {
      width: 100%;
      padding: 0 15px;
   }

   /* Navbar hero */
   .navbar {
      background-size: cover;
      background-position: center;
      margin-top: 5px;
      padding: 40px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      position: relative;
      color: var(--blanc-pur);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
   }

   .navbar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(2, 25, 59, 0.6);
      backdrop-filter: blur(1px);
   }

   .navbar i {
      font-size: 3rem;
      margin-bottom: 10px;
      color: var(--jaune-or);
      z-index: 1;
      position: relative;
   }

   .navbar p {
      font-size: 2.5rem;
      font-weight: bold;
      margin: 0;
      z-index: 1;
      position: relative;
      text-transform: uppercase;
      letter-spacing: 2px;
   }

   /* Section principale */
   main {
      padding: 60px 0;
      min-height: 70vh;
   }

   /* Titre de section */
   .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--bleu-marial);
      text-align: center;
      margin-bottom: 50px;
      position: relative;
      padding-bottom: 20px;
   }

   .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, var(--bleu-marial), var(--jaune-or));
      border-radius: 2px;
   }

   .gold-accent {
      color: var(--jaune-or);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
   }

   /* Grille des actualités */
   .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 30px;
   }

   /* Cartes d'actualités */
   .news-card {
      background: var(--blanc-pur);
      border-radius: 20px;
      box-shadow: var(--ombre-legere);
      overflow: hidden;
      transition: all 0.4s ease;
      position: relative;
   }

   .news-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--ombre-forte);
   }

   .news-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--bleu-marial), var(--jaune-or));
      opacity: 0;
      transition: opacity 0.3s ease;
   }

   .news-card:hover::before {
      opacity: 1;
   }

   /* Images des cartes */
   .card-img-top {
      width: 100%;
      height: 180px;
      object-fit: cover;
      transition: transform 0.4s ease;
   }

   .news-card:hover .card-img-top {
      transform: scale(1.05);
   }

   /* Corps des cartes */
   .card-body {
      padding: 18px;
   }

   .news-date {
      font-size: 0.9rem;
      color: var(--texte-secondaire);
      margin-bottom: 8px;
      font-weight: 500;
   }

   .news-category {
      display: inline-block;
      background: linear-gradient(135deg, var(--bleu-marial), var(--bleu-vierge));
      color: var(--blanc-pur);
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
   }

   .card-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--bleu-marial);
      margin-bottom: 12px;
      line-height: 1.3;
   }


   .card-text {
      color: var(--texte-secondaire);
      line-height: 1.6;
      margin-bottom: 15px;
      font-size: 0.95rem;
   }

   /* Conteneur vidéo */
   .video-container {
      margin-top: 20px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--ombre-legere);
   }

   .news-video {
      width: 100%;
      height: 200px;
      border: none;
      border-radius: 12px;
   }

   /* Grille d'images supplémentaires */
   .row.g-2 {
      display: flex;
      flex-wrap: wrap;
      margin: -5px;
   }

   .col-6 {
      width: 50%;
      padding: 5px;
   }

   .img-fluid {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.3s ease;
   }

   .img-fluid:hover {
      transform: scale(1.05);
   }

   .rounded {
      border-radius: 8px;
   }

   /* Animation fade-in */
   .animate-fadein {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease forwards;
   }

   @keyframes fadeInUp {
      to {
         opacity: 1;
         transform: translateY(0);
      }
   }

   /* Responsive Design */
   @media (max-width: 1200px) {
      .news-grid {
         grid-template-columns: 1fr 1fr;
         gap: 18px;
      }
   }

   @media (max-width: 768px) {
      .container {
         padding: 0 15px;
      }

      .navbar p {
         font-size: 2rem;
      }

      .navbar i {
         font-size: 2.5rem;
      }

      .section-title {
         font-size: 2rem;
      }

      /* Passer à 2 colonnes sur tablette */
      .news-grid {
         grid-template-columns: 1fr 1fr;
         gap: 15px;
      }

      .marian-footer .row {
         flex-direction: column;
      }

      .marian-footer .col-md-4 {
         text-align: center;
         margin-bottom: 30px;
      }

      main {
         padding: 40px 0;
      }
   }

   @media (max-width: 480px) {

      /* Passer à 1 colonne sur mobile */
      .news-grid {
         grid-template-columns: 1fr;
         gap: 15px;
      }

      .news-card {
         border-radius: 15px;
      }

      .card-body {
         padding: 15px;
      }

      .card-title {
         font-size: 1.2rem;
      }

      .section-title {
         font-size: 1.8rem;
      }

      .navbar {
         padding: 30px 0;
      }

      .navbar p {
         font-size: 1.8rem;
      }
   }

   /* Utilities */
   .mb-4 {
      margin-bottom: 24px;
   }

   .mt-3 {
      margin-top: 16px;
   }

   .me-2 {
      margin-right: 8px;
   }

   .my-4 {
      margin-top: 24px;
      margin-bottom: 24px;
   }

   .mb-0 {
      margin-bottom: 0;
   }

   .mb-md-0 {
      margin-bottom: 0;
   }

   .text-white {
      color: var(--blanc-pur);
   }

   .list-unstyled {
      list-style: none;
      padding: 0;
   }
