<!-- ===================== style.css ===================== -->
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
  color: #222;
}

.header-light {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 140px;
}

.logo.large {
  height: 280px;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.hero {
  margin-bottom: 3rem;
}

.split {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.split img {
  width: 300px;
  border-radius: 8px;
}

.split.reverse {
  flex-direction: row-reverse;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #eee;
  margin-top: 3rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }
}