/* Header container */
.header {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* keep logo and text aligned left */
  background-color: #000; /* black background */
  padding: 10px 40px;
}

/* Logo styling */
.header .logo {
  font-size: 36px; /* same size as before */
  font-weight: bold;
  color: #ffffff; /* white */
  margin-right: 20px; /* space before tagline */
  white-space: nowrap;
}

/* Tagline styling */
.header .tagline {
  font-size: 22px; /* bigger, more balanced */
  font-weight: 500;
  color: #ffffff; /* keep white */
  margin-left: 10px; /* pulls tagline closer to logo */
  line-height: 1.2;
  white-space: nowrap;
}