		
  /* Variables globales */
  :root {
    --primary-green: #2ecc71;
    --primary-blue: #3498db;
    --primary-yellow: #f1c40f;
    --sidebar-width: 250px;
    --navbar-height: 60px;
   }
   
    
   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
    }
   
    body {
      background-color: cornsilk;
    }
    .ww{
      margin-bottom: 55px;
    }
   
    h2{
      margin-top: 5px;
      text-align: center;
    }
   
    .container {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
    }
   
    a{
      text-decoration: none;
      color: black;
    }
    
    .proccess{
      margin-top: 2rem;
      padding-left: 30px;
      line-height: 2;
      
    }
    .compta{
      margin-top: 2rem;
      padding-left: 30px;
      line-height: 2;  
    }
    .commer{
      margin-top: 2rem;
      padding-left: 30px;
      line-height: 2;  
    }
    .pr{
      margin-top: 2rem;
      padding-left: 30px;
      line-height: 2;  
    }
    .button{
      margin-left: 30px;
    }
    
   /* esayproccess version */
   .vers {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
   margin: auto
   }
   .chiffre {
    display: flex;
    align-items: center;
    gap: 2rem;
   }
   .version-badge {
    background-color: #4CAF50;
    color: white;
    border-radius: 10px; /* Pour un carré avec coins arrondis */
    padding: 3px 8px;
    font-size: 12px;
    margin-left: 10px;
   }
   .app-name {
    font-size: 24px; /* Un peu plus grand */
    font-weight: bold;
    color: #333;
   }
   /* fin easy version */
   
   /* voir plus */
   
   .voir{
     color: white;
   }
   
   /* Navbar Styles */
   .navbar {
    background:white;
    padding: 1rem;
    position: fixed;
    width: 100%;
   height:90px;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
   }
   
   .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
   }
   
   .logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s;
   }
   
   .logo:hover {
    transform: scale(1.05);
   }
   
   .nav-menu {
    display: flex;
    gap: 2rem;
   }
   
   .nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
   }
   
   .nav-link:hover {
    background-color: rgba(255,255,255,0.2);
   }
   .nav-menu {
    display: flex;
    gap: 1rem;
    position: relative;
   }
   
   .nav-item {
    position: relative;
   }
   
   .nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
    display: block;
   }
   
   .nav-link:hover {
    background-color: rgba(255,255,255,0.2);
   }
   
   
   /* Menu principal */
   .nav-menu {
   display: flex;
   gap: 1rem;
   position: relative;
   }
   
   .nav-item {
   position: relative;
   }
   
   .nav-link {
   color: rgb(4, 4, 4);
   text-decoration: none;
   padding: 0.5rem 1rem;
   border-radius: 5px;
   transition: all 0.3s;
   display: block;
   }
   
   .nav-link:hover {
   background-color: rgba(255,255,255,0.2);
   }
   
   /* Sous-menu */
   .submenu {
   position: absolute;
   top: 100%;
   left: 0;
   background-color: white;
   border-radius: 5px;
   box-shadow: 0 2px 5px rgba(0,0,0,0.2);
   min-width: 200px;
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: all 0.3s;
   }
   
   .nav-item:hover .submenu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
   }
   
   .submenu-link {
   color: #333;
   text-decoration: none;
   padding: 0.75rem 1rem;
   display: block;
   transition: all 0.3s;
   }
   
   .submenu-link:hover {
   background-color: #f0f0f0;
   color: var(--primary-blue);
   }
   
   /* ma scroolbar responsive */
   @media screen and (max-width: 1080px) {
     .nav-menu {
         display: flex;
         overflow-x: scroll; 
         white-space: nowrap; 
         -webkit-overflow-scrolling: touch; 
         scrollbar-width: thin;
         scrollbar-color: #888 #f1f1f1;
     }
   
     .nav-menu::-webkit-scrollbar {
         height: 2px;
     }
   
     .nav-menu::-webkit-scrollbar-thumb {
         background-color: #888;
         border-radius: 2px;
     }
   }
   
   /* mes cartes responsives */
   @media screen and (max-width: 768px) {
     .cards {
         flex-direction: column;
     }
     
     .card {
         width: 100vw;
     }
   }
   
   
   /* mes cartes */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 15px;
     flex-wrap: wrap;
    }
   
    .card {
      background: white;
      position: relative;
      height: 190px; 
      border-radius: 3px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      margin: 0;
     flex: 1;
     min-width: 100%; 
     max-width: 100%;
     box-sizing: border-box;
     padding: 10px;
    }
   
    .card:hover {
      transform: translateY(-5px);
    }
   
    .card-image {
      width: 100%;
      height: 200px;
      background-color: #343131;
      display: flex;
      align-items: center;
      justify-content: center;
    }
   
   .card-content {
     position: absolute;
     bottom: 0;
     width: 100%;
     padding: 16px;
   }
   
   
    .card-title {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      color: black 1px solid;
    }
   
    .card-text {
      color: black;
      line-height: 1.5;
    }
   
    /* mon footer */
    .footer {
      background-color: #1a1a1a;
      color: white;
      padding: 3rem 1rem;
      margin-top: auto;
    }
   
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
   
    .footer-section h3 {
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }
   
    .footer-section ul {
      list-style: none;
    }
   
    .footer-section ul li {
      margin-bottom: 0.5rem;
    }
   
    .footer-section ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }
   
    .footer-section ul li a:hover {
      color: white;
    }
   
    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      margin-top: 2rem;
      border-top: 1px solid #333;
    }
       
   
   
   
   /* navbar hier */
   .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-content img {
    margin-right: auto; 
    max-width: 150px; 
    height: auto;
}

.nav-menu {
    display: flex;
    margin-left: auto; 
}

@media screen and (max-width: 768px) {
    .nav-content {
        flex-wrap: wrap;
    }

    .nav-content img {
        margin-right: 0;
    }

    .nav-menu {
        width: 100%;
        overflow-x: auto;
    }
}
   
   
   
   
   