.site-footer {
  margin-top: 200px;
  width: 100%;
  background: var(--vk_header_color);
  color: var(--textColor);
  padding: 20px;
  text-align: center;
}
  
  .footer-container {
    display: flex;
    width: 70%;
    flex-wrap: wrap; /* Permet aux colonnes de s'adapter si nécessaire */
    max-width: 1200px;
    justify-content: space-around;
    text-align: center;
    margin: auto;
    align-items: flex-start;
    flex: 1;
  }
  
  .footer-section {
    flex: 1;
    min-width: 180px; /* Assure un minimum de largeur */
    text-align: center;
    margin-bottom: 25px;
}
  
  .footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: var(--vk_orange_color);
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

  
  .footer-section ul li a {
    color: var(--textColor);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: var(--vk_orange_color_hover);
  }
  
  .social-links {
    display: flex;
    flex-direction: column;
  }

  #contact-link{
    cursor: pointer;
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid var(--vk_separateur_color);
    padding-top: 20px;
    font-size: 0.9em;
  }

  @media (min-width: 1921px) { /* Pour les riches */
    .site-footer {
      margin-top: 400px;  
      
    }
  }
  
  @media (max-width: 768px) {
    .site-footer {
      margin-top: 200px;  
      
    }
    
    .footer-container {
      justify-content: space-between; /* Ajuste l'espacement */
      flex-wrap: wrap; /* Garde les colonnes */
    }
  
    .footer-section {
        flex: 1 1 30%; /* Permet à 3 sections de tenir en ligne */
        min-width: 150px;
        margin-bottom: 25px;
    }

    .footer-section h3{
      margin-bottom: 5px;
    }
}