.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    
    padding: 10px;
    
   
  }
  
  .service-card {
    background-color: #fff;
    border: 2px solid #2563eb;
    border-radius: 12px;
    width: 350px;
    height: auto;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;

  }
  
  .service-card:hover {
    transform: scale(1.02);
  }
  
  .service-card h2 {
    font-size: 18px;
    color: #1d4ed8;
    margin-bottom: 15px;
  }
  
  .btnRR {
    padding: 10px 20px;
    background-color: #3ad832c5;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #1e3a8a;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .services-container {
      flex-direction: column;
      align-items: center;
    }
  
    .service-card {
      width: 90%;
    }
  }
  
  .service-icon {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
  }

  
   
 
 /* career.css */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #eef2f7;
  color: #333;
}
.career-help {
  text-align: center;
  padding: 60px 20px;
  background-color: #fdfafa;
    margin-top: 50px;
}
.career-help h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0.5em 0;
  margin-top: -2em; 
  
}
.career-help .description {
  color: #555;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2em;
  line-height: 1.5;
}
 
.options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  width: 180px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none; /* enlève le soulignement */
  color: inherit;         /* garde la couleur du texte par défaut */
  display: block;
     
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
    /* Option 1 : couleur unie */
   background: #ffe600;
    transform: scale(1.03);
  text-decoration: none;
}

.card:hover p {
   color: black;
   text-decoration: none;
}

.card img {
  display: block;
  margin: 0 auto 12px; /* 0 en haut, auto à gauche/droite, 12px en bas */
  width: 60px;
  height: 60px;
  object-fit: contain;

}

 
.card p {
  font-size: 0.95rem;
  margin: 0;
  color: black;
  font-weight: 600;
}
.card  a {
  text-decoration: none;
   color: black;
  display: block;
  padding: 10px 0;
}

 


 
 