:root {
  --primary-color: #FF6F00; /* Orange vif */
  --secondary-color: #000000; /* Noir */
  --accent-color: #FFA000; /* Orange clair */
  --text-color: #333;
}

/* ---------------- Footer ---------------- */
.footer {
  background: #222 !important;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
}

.footer-col {
  flex: 1 1 45%;
  min-width: 280px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.footer-col p {
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  margin-top: 10px;
  background: var(--primary-color);
  color: #222;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #bbb;
}