header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.logo img {
  height: 60px;
  margin-right: 15px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: var(--accent);
  text-decoration: none;
  padding: 8px 12px;
}

nav ul li a:hover,
nav ul li a.active {
  background: var(--accent);
  color: var(--primary);
  border-radius: 4px;
}
.logo {
  display: flex;
  align-items: center;   /* keeps logo + text aligned vertically */
  gap: 10px;             /* small space between logo and text */
}

.company-info h1 {
  margin: 0;
  font-size: 1.2rem;     /* slightly smaller */
  line-height: 1.2;      /* reduces vertical space */
}

.company-info p {
  margin: 0;
  font-size: 0.8rem;     /* smaller tagline */
  line-height: 1.2;
}