:root {
  --green: #27ae60;
  --main-color: #c1753d;
  --titre-color: #2c2646;
  --second-color: #d2e6dc;
  --light-blue: #d0e4ff;
  --light: #fff;
  --color-tag-grey: #f0f0f0;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.6);
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* --- Footer --- */
.footer {
  background-color: #1d4b67 !important;
  color: var(--light);
  padding-top: 150px;
  position: relative;
  /* Ajout de la marge pour l'espace au-dessus du footer */
  margin-top: 100px;
}

.page_blanche {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1100px;
  padding: 2.5rem 2rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.page_blanche .page_info h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
  color: var(--titre-color) !important;
  margin: 0;
}

.page_blanche .page_info p {
  font-size: 1.2rem;
  color: var(--titre-color);
  margin: 0;
}

.page_blanche .page_btn .page_button {
  padding: 0.8rem 1.5rem;
  width: auto;
  color: var(--light);
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  background-color: var(--main-color) !important;
  cursor: pointer;
  transition: all 0.3s;
}

.page_blanche .page_btn .page_button:hover {
  transform: scale(1.05);
  background: #1a2a4b !important;
}

.footer_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.footer_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_logo img {
  width: 100px;
}

.footer_description {
  margin-block: 1rem;
  font-size: 12px;
  color: white;
}

.footer_title {
  font-size: 25px;
  font-family: 'Barlow', sans-serif;
  margin-bottom: 1rem;
  color: white !important;
}

.footer_icons {
  display: flex;
  gap: 10px;
}

.footer_icons i {
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem !important;
  transition: all 0.3s;
}

.footer_icons i:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.footer_links,
.footer_list {
  list-style-type: none;
  padding-left: 0;
}

.footer_links li a,
.footer_list li a {
  margin-bottom: 1rem;
  display: block;
  color: var(--light) !important;
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
}

.footer_links li a:hover,
.footer_list li a:hover {
  color: var(--main-color) !important;
}

.footer_copy {
  padding: 1.5rem 20px;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .page_blanche {
    width: 95%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    top: 0;
    transform: translate(-50%, -50%);
  }

  .page_blanche .page_info h1 {
    font-size: 2rem;
  }

  .page_blanche .page_info p {
    font-size: 1.1rem;
  }

  .page_blanche .page_btn {
    margin-top: 20px;
  }

  .footer_content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .page_blanche {
    padding: 1.5rem 1rem;
    top: 0;
    transform: translate(-50%, -50%);
  }

  .page_blanche .page_info h1 {
    font-size: 1.5rem;
  }

  .page_blanche .page_info p {
    font-size: 1rem;
  }

  .page_blanche .page_btn .page_button {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  .footer_content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer_logo img {
    margin: 0 auto;
  }

  .footer_icons {
    justify-content: center;
  }

  .footer_copy {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}
