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

body {
  font-family: 'Open Sans', sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── HEADER ── */
.site-header {
  background: #111;
  padding: 20px 24px;
  text-align: center;
}
.site-header .logo {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.site-header .logo span { color: #4caf50; }
.site-header .tagline {
  color: #aaa;
  font-size: 0.78rem;
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── CONTENT ── */
.policy-wrap {
  max-width: 780px;
  margin: 48px auto;
  padding: 0 24px 60px;
  flex: 1;
  width: 100%;
}
.policy-wrap h1 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #111;
}
.policy-wrap .last-updated {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 32px;
}
.policy-wrap h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: #111;
}
.policy-wrap p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}
.policy-wrap a {
  color: #2e7d32;
  text-decoration: none;
}
.policy-wrap a:hover { text-decoration: underline; }

/* ── CONTACT FORM ── */
.contact-info {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin-top: 24px;
}
.contact-info p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.8;
}
.contact-info .email-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

/* ── FOOTER ── */
.site-footer {
  background: #111;
  color: #666;
  text-align: center;
  font-size: 0.75rem;
  padding: 24px 16px;
  line-height: 1.8;
}
.site-footer a { color: #888; text-decoration: none; }
.site-footer a:hover { color: #aaa; }
