/* legalprivacy.css — page-specific styles for legalprivacy.html
   Shared layout (header, footer, nav, hamburger) comes from main4.css. */

/* ===== Legal content area ===== */
.content {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 24px 60px;
}

/* Sections */
.content > section {
  scroll-margin-top: 100px;
  padding: 28px 0;
  border-bottom: 1px dashed #ccc;
}
.content > section:last-of-type {
  border-bottom: 0;
}

/* Headings */
.content h1 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  margin: 6px 0 16px;
}
.content h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 18px 0 8px;
}
.content h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 12px 0 6px;
}

/* Body text */
.content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 10px 0;
}

/* "Last updated" line */
.content > p:first-child {
  color: #555;
  font-size: 14px;
}

/* Copyright line at bottom */
.content > p:last-child {
  color: #555;
  font-size: 14px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}

/* ===== Small screens ===== */
@media (max-width: 800px) {
  .content {
    padding: 80px 16px 40px;
  }
  .content h1 {
    font-size: 24px;
  }
  .content > section {
    scroll-margin-top: 80px;
    padding: 22px 0;
  }
}

/* ===== Print ===== */
@media print {
  .content {
    padding-top: 0;
  }
  .content > section {
    break-inside: avoid;
  }
}
