/*********** Nos domaines de recherche ***************************/

/*body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
    color: #333;
  }*/
  .search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }
  .formation-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .formation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  .formation-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  .formation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
  }
  .formation-info {
    padding: 20px;
    height: 150px;
    overflow-y: auto;
  }
  .formation-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
  }
  .formation-description {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.5;
  }

/*********** Nos domaines de recherche fin ***************************/