/* Logo container styles */
.logo-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-left: auto;
}

/* Parent container */
.logo-container-wrapper {
  display: flex;
  width: 100%;
  flex: 1;
}

.logo-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-image {
  width: 100px; /* Taille par défaut pour mobile */
  height: 100px;
  object-fit: contain;
}

/* Tablettes et petits écrans */
@media (min-width: 768px) {
  .logo-image {
    width: 150px; /* Taille pour écrans moyens */
    height: 150px;
  }
}

/* Grands écrans */
@media (min-width: 1024px) {
  .logo-image {
    width: 180px; /* Taille pour grands écrans */
    height: 180px;
  }
}
