.projet{
    background-color: white;
    margin-top: 25px;
    border-bottom: 2px solid white;
}

.projet h2{
    color: black;
    text-align: center;
    font-weight: 700;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
  
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 500px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card h3 {
  margin: 15px 0 10px;
  font-size: 1.2rem;
  color: black;
  font-weight: 500;
  font-size: 25pt;
}

.card p {
  padding: 0 15px 20px;
  color: #666;
  font-size: 0.95rem;
}
