body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #fff;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
  max-height: 60px;
  margin: 0 auto;
}

main {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: #f8f9fa;
  justify-content: center;
  align-items: flex-start;
}

.flyer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  width: 100%;
  align-items: center;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flyer:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.flyer h2 {
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.flyer a {
  display: block;
  width: 100%;
}

.flyer img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

footer {
  background-color: #fff;
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.footer-logo {
  max-height: 50px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  main {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }

  .flyer {
    padding: 1.25rem;
  }
}
