/* Footer global */
footer {
    background-color: #006bb3;
    color: white !important;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Conteneur interne */
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  /* Colonne générique */
  .footer-column {
    flex: 1;
    min-width: 180px;
  }
  
  .footer-column h3,
  .footer-column h4 {
    font-weight: bold;
    margin-bottom: 15px;
    color: white !important;
  }
  
  /* Liens */
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: white !important;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .footer-column ul li a:hover {
    color: #cce6ff;
  }
  
  /* Icônes Réseaux Sociaux */
  .footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .footer-socials a {
    color: white;
    font-size: 18px;
    transition: transform 0.2s ease, color 0.2s ease;
  }
  
  .footer-socials a:hover {
    color: #cce6ff;
    transform: scale(1.1);
  }
  
  /* Icônes contacts */
  .footer-contact li i {
    margin-right: 8px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
  }
  