.projet {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.image {
  flex: 0 0 150px;
  margin-right: 20px;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.description {
  flex: 1;
}

.description h2 {
  margin-top: 0;
  font-size: 1.5em;
}

@media (max-width: 768px) {
  .projet {
    flex-direction: column;
    align-items: flex-start;
  }

  .image {
    margin: 0 0 15px 0;
    width: 100%;
    max-width: 100%;
  }

  .description {
    width: 100%;
  }
}

