.card {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;

    background-color: #fff;
  }
  
  /* Style for the heading */
  .card h3 {
    font-size: 1.5rem;
    margin: 0;
  }
  
  /* Style for the summary text */
  .card span {
    font-size: 1rem;
    color: #666;
  }
  
  /* Style for the "En savoir plus" button */
  .card .bouton {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .card .bouton:hover {
    background-color: #0056b3;
  }
  
  /* Style for the illustration image */
  .card .illustration {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }


  .bloc-section {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.bloc {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.bloc:hover {
    transform: translateY(-5px);
}

.bloc h2 {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.bloc p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #777;
}