header {
  background: white;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
}

nav ul {
  display: flex;
  gap: 20px;
}

nav a {
  transition: var(--transition);
}

nav a:hover {
  color: var(--primary);
}

.hero {
  padding: 80px 0;
  text-align: center;
  background: url('../images/placeholders/PLACEHOLDER-BANNER.jpg') center/cover no-repeat;
  color: white;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto;
}

.offers {
  padding: 60px 0;
}

.offers h2 {
  text-align: center;
  margin-bottom: 40px;
}

.footer {
  background: var(--dark);
  color: white;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer h3 {
  margin-bottom: 15px;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  color: #ddd;
}

.footer a:hover {
  color: white;
}

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

.logo-link {
  display: flex;
  align-items: center;
}