/* Container - specifically for privacy policy context if needed, otherwise inherits */
.privacy-policy .container {
  max-width: 800px;
  padding: 0;
  /* content padding handled by modal */
}

/* Headings */
.privacy-policy h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color, #0A192F);
}

.privacy-policy h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color, #0A192F);
}

.privacy-policy .last-updated {
  font-size: 0.95rem;
  color: var(--text-light, #555);
  margin-bottom: 2rem;
}

.policy-list h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* Ordered list formatting */
.policy-list {
  counter-reset: section;
  list-style: none;
  padding-left: 0;
}

.policy-list>li {
  margin-bottom: 2rem;
}

.policy-list>li::before {
  counter-increment: section;
  content: counter(section) ". ";
  font-weight: 700;
  color: var(--accent-color, #00B4D8);
  margin-right: 0.25rem;
}

/* Links */
.policy-a {
  color: var(--accent-color, #00B4D8) !important;
  text-decoration: none;
}

.policy-a:hover {
  text-decoration: underline;
  color: var(--accent-hover, #0077B6) !important;
}

/* Highlights */
.highlight {
  color: var(--accent-color);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 700px) {
  .privacy-policy h1 {
    font-size: 1.6rem;
  }

  .policy-list h2 {
    font-size: 1.1rem;
  }
}
/* Bullet lists within sections */
.privacy-policy__list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-color, #333);
}

.privacy-policy__list li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.privacy-policy__list li::marker {
  color: var(--accent-color, #00B4D8);
}
