

.download-section {
  margin-top: 10vh;
  text-align: center;
  padding: 4rem 0;
}

.download-section h2 {
  font-size: 2rem;
  color: #ff3366;
  margin-bottom: 1rem;
}

.download-section p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
}

.store-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  vertical-align: middle;
}

.store-links a {
  text-decoration: none;
}

.store-badge {
  width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-badge:hover {
  transform: translateY(-5px);
}

#links-to-policies{
  margin-top: 4vh;
}



/* Footer */
.footer {
  background: #ffe6eb;
  color: #333;
  text-align: center;
  padding: 1rem 0;
  position: fixed; /* Rend le footer fixe */
  bottom: 0; /* Place le footer tout en bas */
  width: 100%; /* S'assure que le footer couvre toute la largeur de la page */
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Ajoute une légère ombre au-dessus */
  z-index: 10;
}

.footer p {
  margin: 0;
}

