/* contact.css */

/* Réinitialisation des styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Styles généraux */
  body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #333;
  }
  
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
  }
  
  header {
    background-color: #333;
    color: #fff;
    padding: 10px;
  }
  
  header h1 {
    font-size: 24px;
   
  }
  
  nav ul {
    list-style: none;
    
  }
  
  nav ul li {
    display: inline-block;
    margin: 0 10px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  section.contact {
    padding: 40px 0;
  }
  
  section.contact h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  section.contact p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  section.contact ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
  }
  
  section.contact li {
    margin-bottom: 10px;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
  }
  