/* CSS pour reproduire exactement le footer de la maquette */
.site-footer {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", Arial, sans-serif;
}

/* 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: 50px;
  width: auto;
}

.footer-logos img {
  max-height: 50px;
  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;
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.footer-eu-logos {
  display: flex;
  gap: 20px;
}

.footer-eu-logos .footer-logo img {
  max-height: 40px;
}

/* 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-logos,
  .footer-secondary-logos {
    padding: 0 15px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-bottom .row {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    text-align: center;
    margin-top: 15px;
  }
}
