.footer {
  background: #0a1f44;
  color: #f1f1f1;
  padding: 60px 20px 20px;
  margin-top: 80px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 22px;
  color: #6BA8FF;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-siret {
  font-size: 13px;
  margin-top: 10px;
  color: #aaa;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #6BA8FF;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-socials a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #6BA8FF;
  transform: translateX(3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #aaa;
}

.footer-cta {
  max-width: 400px;
}

.footer-cta p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;

  border-left: 3px solid #6BA8FF;
  padding-left: 12px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-socials {
    align-items: center;
  }
}