* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, sans-serif;
}

.site {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.site-footer {
  display: flex;
  justify-content: space-evenly;
}

header {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

header .site {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav {
  display: flex;
  gap: 1.5rem;
}

.header-nav a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
}

.header-nav a:hover {
  text-decoration: underline;
}

main {
  flex: 1;
}

main .site {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.logo {
  display: block;
  height: 40px;
  width: auto;
}

.hero {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

footer {
  padding: 1rem 0;
  border-top: 1px solid #eee;
}

footer a {
  color: #333;
  text-decoration: none;
}

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

main:not(.hero-only) h1 {
  margin: 2rem 1.5rem 1rem;
  font-size: 1.5rem;
}

main:not(.hero-only) p {
  margin: 0 1.5rem 2rem;
  color: #555;
}

.policy {
  padding: 2rem 0 3rem;
}

.policy h1 {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
}

.policy-subtitle {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #555;
}

.policy-updated {
  margin: 0 0 2rem;
  font-size: 0.9rem;
  color: #666;
}

.policy h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
}

.policy h2:first-of-type {
  margin-top: 0;
}

.policy p {
  margin: 0 0 1rem;
  color: #444;
  line-height: 1.6;
}

.policy ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  color: #444;
  line-height: 1.6;
}

.policy li {
  margin-bottom: 0.35rem;
}

.policy a {
  color: #333;
  text-decoration: underline;
}

.policy a:hover {
  color: #000;
}

.policy-permissions {
  margin-top: 0.5rem;
}

.policy-permissions li {
  margin-bottom: 0.75rem;
}

.policy-permissions li:last-child {
  margin-bottom: 0;
}

.policy-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.btn-cta {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn-cta:hover {
  background-color: #333;
  color: #fff;
}

.policy .btn-cta {
  color: #fff;
  text-decoration: none;
}

.policy .btn-cta:hover {
  color: #fff;
}
