* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Nunito', -apple-system, sans-serif;
  color: #2D3436;
  background: #FFF8F0;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---- Nav (same as index) ---- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: #2D3436;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .heart-logo { width: 26px; height: 26px; }
.logo .brand-primary { color: #FF6B6B; }
nav a.cta-nav {
  background: #FF6B6B;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}
nav a.cta-nav:hover { background: #e85555; }

/* ---- Page header ---- */
.page-header {
  background: #FF6B6B;
  color: white;
  padding: 100px 24px 40px;
  text-align: center;
}
.page-header h1 { font-size: 32px; font-weight: 800; }

/* ---- Content ---- */
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  flex: 1;
  width: 100%;
}
main h2 { font-size: 22px; font-weight: 800; margin: 32px 0 12px; color: #FF6B6B; }
main h3 { font-size: 18px; font-weight: 700; margin: 24px 0 8px; }
main p { margin-bottom: 12px; color: #444; }
main ul, main ol { margin: 0 0 16px 24px; color: #444; }
main li { margin-bottom: 4px; }
main a { color: #FF6B6B; }

/* ---- Footer (same as index) ---- */
footer {
  background: #2D3436;
  color: rgba(255,255,255,0.7);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand .heart-logo { width: 22px; height: 22px; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; }
}
