* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: #45c5b6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #000;
}

/* Home page layout */
.home-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.home-layout .logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.home-layout .tagline {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #000;
}

/* Secondary page layout */
.secondary-layout {
  min-height: 100vh;
  padding: 2rem;
  padding-bottom: 4rem;
}

.secondary-header {
  margin-bottom: 2rem;
}

.secondary-header .logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.secondary-content {
  max-width: 720px;
  margin: 0 auto;
}

.secondary-content h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.secondary-content h2 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.secondary-content h3 {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.secondary-content p,
.secondary-content li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.secondary-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 1rem 1.5rem;
}

.site-footer a {
  color: #000;
  text-decoration: none;
  margin-left: 1rem;
}

.site-footer a:first-child {
  margin-left: 0;
}

.site-footer a:hover {
  text-decoration: underline;
}
