/* Style général */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Abel', sans-serif;
}

body {
  background-color: #233D63;
  color: white;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1a237e;
  color: white;
  padding: 1rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

nav .logo {
  width: 40px;
  height: 40px;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #90caf9;
}

.back-arrow img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}

/* Contenu principal */
.legal-content {
  padding: 120px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.container {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.legal-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.legal-section:hover {
  transform: translateY(-5px);
}

.legal-section h2 {
  color: #4a90e2;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-section p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* Section Contact */
#contact {
  padding: 4rem 2rem;
  text-align: center;
  background-color: rgba(35, 61, 99, 0.95);
}

.btn-reseau-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.btn-home {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-home:hover {
  transform: scale(1.1);
}

.btn-home img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* Media Queries */
@media (max-width: 768px) {
  .legal-content {
    padding: 100px 15px 30px;
  }

  .container {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .legal-section {
    padding: 1rem;
  }

  .btn-reseau-contact {
    gap: 1rem;
  }

  .btn-home img {
    width: 40px;
    height: 40px;
  }

  nav ul {
    display: none;
  }
  
  nav h3 span {
    display: none;
  }
}

@media (max-width: 480px) {
  nav h3 {
    font-size: 1rem;
  }

  .logo {
    width: 30px;
    height: 30px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .legal-section h2 {
    font-size: 1.2rem;
  }

  .btn-reseau-contact {
    flex-wrap: wrap;
  }
} 