/* Colonnes */
.left-column {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 25px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 25%;
  order: 1;
}

.main-column {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 74%;
  order: 2;
}

.main-column-large{
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 100%;
  order: 3;
}

@media (max-width: 910px) {
  .left-column,
  .main-column {
    width: 100%;
  }
 

}