@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.legal-body {
  font-family: "Montserrat", sans-serif;
  background-color: #080a0d;
  color: #ffffff;
  line-height: 1.7;
}

.pres {
padding: 3rem 2rem;
}
/* TITRES */
h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
}

h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #4c79bd;
  font-weight: 500;
}

/* PARAGRAPHES */
p {
  margin-bottom: 1.2rem;
  text-align: justify;
  color: #eaeaea;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 650px) {
  body {
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.9rem;
  }
}

footer a:hover {
  text-decoration: underline;
}

address {
  line-height: 2;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 2rem 1rem 2rem;
  background-color: #0f1114;
  color: #ccc;
  text-align: center;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.footer-section h4 {
  font-size: 1.3rem;
  color: #4c79bd;
  margin-bottom: 0.5rem;
}

.footer-hr {
  width: 60px;
  border: 1px solid #4c79bd;
  margin: 0 auto 1.5rem auto;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-section p {
  margin: 0.6rem 0;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  border-top: 1px solid #4c79bd44;
  padding: 1.5rem;
}

.icon-footer {
  width: 1.2rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}

#btn-div {
  display: flex;
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
  margin-top: 3rem;
}

.btn, .back-btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #121922;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
    margin: 0;
    text-align: center;
    display: inline-block;
  }
  
  .btn:hover {
    background-color: transparent;
    color: #fff;
  }