/* content-page.css — schone layout voor simpele tekstpagina's
   (voorwaarden, privacy, en toekomstige blog/info-pagina's): niets meer dan
   header + gecentreerde content + footer, in de gewone site-styling.
   Vervangt het lenen van de zware maatregel-detail-layout (specialist.css +
   .maatregel-content-main-box met 93-120px padding). */

.content-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 64px;
  color: #141053;
  box-sizing: border-box;
}

.content-page h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #141053;
  margin: 0 0 4px;
}

.content-page h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #141053;
  margin: 32px 0 8px;
}

.content-page p {
  font-size: 16px;
  line-height: 1.65;
  color: #141053;
  margin: 0 0 14px;
}

.content-page a {
  color: #6C63FF;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .content-page {
    padding: 20px 16px 48px;
  }
  .content-page h2 { font-size: 24px; }
  .content-page h3 { font-size: 18px; margin-top: 26px; }
}
