/* ===========================================
   privacy_policy.css
   (Matches the same container + spacing used in Roadmap)
   =========================================== */

/* Make the page stretch full height */
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Container: center everything, max‐width 1200px */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px; /* same vertical/horizontal padding as Roadmap */
  box-sizing: border-box;
  background-color: #ffffff;
}

/* If you want a slightly tinted background behind the entire section,
   you could wrap the container, but here we keep it plain white. */
.policy-section {
  background-color: #ffffff;
}

/* Main title (h1) styling */
.policy-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #333333;
}

/* “Last updated” line: smaller + gray */
.policy-updated {
  font-size: 0.9rem;
  color: #666666;
  text-align: center;
  margin-bottom: 30px;
}

/* Sub-headings (h2) */
.policy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #333333;
}

/* Paragraph text */
.policy-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 20px;
}

/* Bulleted lists */
.policy-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444444;
}

/* Address block styling */
.policy-address {
  font-style: normal;
  color: #444444;
  margin-bottom: 20px;
}

/* Links inside the policy */
.policy-section a {
  color: #0066cc;
  text-decoration: none;
}
.policy-section a:hover {
  text-decoration: underline;
}

/* Footer push (so footer sits at bottom if content is short) */
.page-container > *:last-child {
  margin-top: auto;
}
