body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #020617;
    color: white;
    height: 100%;
        display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Header Global  */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 80px;
    position: relative;
}

.nav {
    display: flex;
    gap: 50px;
}

.nav a {
    color: white;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 4px;
    background: rgb(55, 0, 255);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 2rem;
}

.nav a:hover::after {
    transform: scaleX(1);
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 60px;
}

/* footer  */

.footer {
  background: #020617;
  color: #ffffff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  width: 220px;
  margin-bottom: 20px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-section a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin: 5px 0;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #222;
  padding-top: 15px;
  font-size: 14px;
  color: #777;
}

/* autre */

.LegalMain {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.Legalh1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.Legalh2 {
    margin-top: 30px;
    font-size: 22px;
    color: rgb(180, 180, 255);
    border-left: 4px solid rgb(55, 0, 255);
    padding-left: 10px;
}

.Legalp {
    font-size: 15px;
    color: #cbd5e1;
    margin: 10px 0;
}

