/* Réinitialisation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body et généralités */
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #2b2b2b;
    color: #f4f4f4;
  }
  
  /* Header*/
header {
  background-color: #101010;
  padding: 2px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  flex-wrap: wrap;
}

.logo img {
  height: 100px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 100px;
  font-size: 150%;
}

nav ul li a{
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

nav ul li a:hover{
  color:rgb(255, 64, 0);
}

header .co a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  background-color: #ff6200;
  border-radius: 5px;
  margin-right: 20px;
}

header .co a:hover {
    background-color: #202020;
  }
  
  /* Main */
  main {
    padding: 2rem 20px;
  }
  
  /* FAQ */
  .faq {
    background-color: #444;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
  }
  
  .faq h2 {
    font-size: 2rem;
    color: #ff6200;
    margin-bottom: 1rem;
  }
  
  .faq-item {
    margin-bottom: 1rem;
  }
  
  .faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .faq-item p {
    font-size: 1rem;
  }
  
  /* Contact Form */
  .contact {
    background-color: #2b2b2b;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
  }
  
  .contact form {
    display: flex;
    flex-direction: column;
  }
  
  .contact label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #fff;
  }
  
  .contact input,
  .contact textarea {
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  .contact button {
    padding: 0.8rem;
    background-color: #ff5900;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .contact button:hover {
    background-color: #e66e00;
  }
  
  /* Informations */
  .info {
    background-color: #3b3b3b;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .info p {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  /*footer*/

  .footer {
    background-color: #121212;
    color: #ccc;
    padding-top: 30px;
    font-size: 15px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding:0 10rem;
  }
  
  .footer-logo img {
    width: 150px;
    margin-bottom: 1rem;
  }
  
  .footer-logo p {
    max-width: 250px;
  }
  
  .footer-links,
  .footer-contact,
  .footer-social {
    min-width: 180px;
  }
  
  .footer-links h4,
  .footer-contact h4,
  .footer-social h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li,
  .footer-contact li {
    margin-bottom: 0.5rem;
  }
  
  .footer a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .footer a:hover {
    color: #ff7300;
  }
  
  
  .footer-bottom {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #2a2a2a;
    background-color: #0f0f0f;
  }
  