/* CSS pour reproduire exactement le footer de la maquette */
.site-footer {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", Arial, sans-serif;
  margin-top: auto;
}

/* Section des logos partenaires (fond blanc) */
.footer-partners {
  background-color: #eceffa !important;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-height: 38px;
  width: auto;
}

.footer-logos img {
  max-height: 38px;
  max-width: 180px;
  width: auto;
}


/* Section des colonnes informatives (fond bleu) */
.footer-main {
  background-color: #fff;
}

.footer-column-title {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #000;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: black;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.footer-links li a:before {
  margin-right: 10px;
}

.footer-links li a:hover {
  text-decoration: underline;
}

/* Zone ADAPTWISE et logos de bas de page */
.footer-secondary-logos {
  padding: 0 0;
  display: flex;
  align-items: center;
  justify-items: center;
}

.footer-eu-logos {
  display: flex;
  gap: 20px;
}

.footer-eu-logos .footer-logo img {
  max-height: 40px;
}

/* Contenu flexible de gauche du footer */
.footer-left-content {
  flex: 1;
  min-width: 200px;
}

.footer-left-content h1,
.footer-left-content h2,
.footer-left-content h3,
.footer-left-content h4,
.footer-left-content h5,
.footer-left-content h6 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}

.footer-left-content p {
  margin-bottom: 0px;
  color: #000000;
  line-height: 1.6;
  font-size: 14px;
}

.footer-left-content a {
  color: #003399;
  text-decoration: none;
}

.footer-left-content a:hover {
  text-decoration: underline;
}

.footer-left-content ul,
.footer-left-content ol {
  margin-bottom: 15px;
  padding-left: 20px;
}

.footer-left-content li {
  margin-bottom: 5px;
  color: #666;
  font-size: 14px;
}

.footer-left-content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* Section du bas (copyright) */
.footer-bottom {
  background-color: #003399;
  padding: 15px 25px;
  color: white;
  font-size: 13px;
  border-top: 1px solid #e0e0e0;
}

.footer-legal-links {
  text-align: right;
}

.footer-legal-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
}

.footer-legal-links a:hover {
  text-decoration: underline;
}

.footer-legal-links .separator {
  margin: 0 8px;
  color: #999;
}

.footer-bottom .copyright p {
  margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 992px) {

  .footer-partners {
    padding: 30px 0;
  }

  .footer-logos,
  .footer-secondary-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-logos img {
    max-height: 32px;
    max-width: 150px;
    width: auto;
  }

  /* Faire passer les rows en colonne sur mobile */
  .footer-main .row {
    flex-direction: column !important;
    gap: 15px;
    align-items: flex-start;
  }

  .footer-secondary-logos {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left-content {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-eu-logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-bottom .row {
    flex-direction: column;
    text-align: left;
  }

  .footer-legal-links {
    text-align: left;
    margin-top: 15px;
  }

  /* Ajuster les colonnes sur mobile */
  .footer-main .column {
    width: 100%;
    text-align: left;
  }
}