
  /* Footer - Style harmonisé */
  .main-footer {
    background: #2a2369;
    color: white;
    padding: 60px 0 20px;
    position: relative;
    font-family: 'Arial', sans-serif;
  }
  
  .main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2a2369 0%, #01843e 50%, #e64123 100%);
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .footer-col h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #01843e;
  }
  
  .footer-col p, .footer-col a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 10px;
    display: block;
  }
  
  .footer-col a {
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-col a:hover {
    color: #01843e;
  }
  
  .footer-address {
    margin-bottom: 15px;
  }
  
  .footer-contact strong {
    color: white;
    font-weight: 600;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    position: relative;
    padding-left: 15px;
  }
  
  .footer-links a::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #01843e;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background: #01843e;
    transform: translateY(-3px);
  }
  
  .copyright {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-align: center;
  }
  
  .copyright .sitename {
    color: white;
    font-weight: 600;
  }
  
  .credits a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
  }
  
  .credits a:hover {
    color: #01843e;
    text-decoration: none;
  }
  
  .love {
    color: #00c853;
    font-weight: 600;
    position: relative;
  }
  
  .love::after {
    content: "❤️";
    margin-left: 3px;
    display: inline-block;
    animation: pulse 1.5s infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
  }
  
  @media (max-width: 768px) {
    .footer-col {
      min-width: 100%;
      margin-bottom: 30px;
    }
  }