.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 6rem;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 100px;
  width: auto;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}

.search-bar {
  width: 100%;
  max-width: 600px;
  padding: 10px 20px;
  font-size: 0.9rem;
  border: 1px solid #095861;
  border-radius: 6px;
  transition: border-color 0.2s ease;
}

.search-bar:focus {
  border-color: #095861;
  outline: none;
}

/* === Responsive styles === */
@media (max-width: 768px) {
  .header {
    padding: 0.5rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .logo-img {
    height: 70px;
  }

  .header-center {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    padding-bottom: 0.5rem;
  }

  .search-bar {
    width: 100%;
    max-width: none;
    font-size: 0.85rem;
  }
}