:root {
  --brand-beige: #080909 !important;
  --text: #1a1a1a;
  --muted: #666;
  --accent: #111212;
}

/* ---------------- BASE ---------------- */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 32px;
  padding-bottom: 0px;
}

/* ---------------- HEADER (SAME AS PRIVACY) ---------------- */
.page-header {
  background: linear-gradient(90deg, #fff 0%, #cffeff 100%);
  padding: 36px 0;
  margin-bottom: 28px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 36px;
  margin: 0 0 6px;
}

.page-header p {
  margin: 0;
  font-size: 14px;
  color: #000;
}

/* ---------------- CONTAINER ---------------- */
.container-max {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
  font-family: 'Montserrat', sans-serif;
}

/* ---------------- CARD ---------------- */
.content-card {
  background: #fff;
  padding: 32px;
  border-radius: 6px;
}

/* ---------------- HEADINGS (EXACT PRIVACY STYLE) ---------------- */
.content-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: #000;
  margin-top: 44px;
  margin-bottom: 20px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* underline below h2 */
.content-card h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: #111;
  margin-top: 10px;
  opacity: 0.6;
}

/* spacing after h2 */
.content-card h2 + p,
.content-card h2 + ul {
  margin-top: 6px;
}

/* ---------------- TEXT ---------------- */
.content-card p,
.content-card li {
  font-size: 15px;
  line-height: 1.75;
  color: #000;
}

.content-card ul {
  padding-left: 18px;
}

/* ---------------- LINKS ---------------- */
.content-card a {
  color: #000;
  font-weight: 500;
  text-decoration: underline;
}

.content-card a:hover {
  color: #080909;
  text-decoration-thickness: 2px;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 767px) {
  .page-header h1 {
    font-size: 28px;
  }

  .content-card {
    padding: 20px;
  }

  .content-card h2 {
    font-size: 21px;
    margin-top: 36px;
  }
}
