
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo {
  max-height: 60px;
  width: auto;
}

@media (max-width: 768px) {
  .header-flex {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .logo-container {
      margin-top: 10px;
      align-self: flex-end;
  }
}
