body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #222;
    border-color: #ffffff;
    border-radius: 2px;
  }
    
  header {
    background: transparent;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #e0e0e0;
  }
  
    
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 0 20px;
  }
  
  .logo-img {
    width: 150px;
    height: 60px;
    object-fit: contain;
    padding: 2px;
    
  }
  
  nav a {
    margin: 0 8px;
    padding: 6px 14px;
    text-decoration: none;
    color: #222;
    font-size: 15px;
    
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  .header-phone {
    font-size: 15px;
    color: #222;
    font-weight: bold;
    margin-right: 10px;
   text-decoration: none;   
  }
  .header-phone:hover {
    color: #e62222;
    text-decoration: underline;
  }
  
  .login-btn {
    background: #333;
    color: #fff;
    border-radius: 20px;
    padding: 8px 22px;
    font-weight: bold;
    font-size: 15px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
    text-decoration: none;
  }
  .login-btn:hover {
    background: #555;
    color: #fff;
  }
  .profil-img {
    width: 28px;
    height: 28px;
  }


/* body */

.title {
    text-align: center;
    margin-top: 30px;
    font-size: 1.6em;
  }

.categories-choix-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* espace entre les catégories */
  margin: 40px 0;
}

.categorie-choix {
  flex: 0 1 30%; /* 3 par ligne, ajuste selon le rendu */
  box-sizing: border-box;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #f7f7f7;
  border-radius: 14px;
  box-shadow: 0 2px 12px #0002;
  padding: 24px 18px;
  width: 180px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.categorie-choix:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px #0003;
}

.categorie-choix img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.categorie-choix span {
  color: #1976d2;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
}





footer {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 40px 0 20px 0;
    width: 100%;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  .footer-logo {
    min-width: 160px;
  }
  .footer-logo div {
    margin-bottom: 8px;
  }
  .footer-links {
    display: flex;
    gap: 40px;
  }
  .footer-links > div {
    min-width: 120px;
  }
  .footer-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px !important;
  }
  .footer-links a, .footer-title {
    display: block;
    
    margin-bottom: 6px;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    color: #222;
    font-size: 14px;
  }
  .footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: "FontAwesome", Arial, sans-serif;
    font-size: 22px;
  }
  .footer-social a {
    color: #222;
    text-decoration: none;
  }
  
  .social-icon {
    width: 24px;
    height: 24px;
    margin: 0 8px;
    vertical-align: middle;
  }
  
  .footer-contact-link {
    color: #333;
    font-weight: bold;
    text-decoration: none;
    margin-left: 8px;
    transition: color 0.2s;
  }
  .footer-contact-link:hover {
    color: #e62222;
    text-decoration: underline;
  }