/* Base styles and modern defaults */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  /* Soft charcoal instead of harsh solid black */
  background-color: #f7fafc;
  /* Subtle off-white background */
  margin: 0;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

/* Container to keep content centered and readable */
.policy-container {
  max-width: 680px;
  /* Optimal reading line-length */
  width: 100%;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* Typography styling */
h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-top: 0;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2b6cb0;
  /* Professional slate blue accent for headings */
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

/* Specifically style the effective date subtitle */
h1+h2 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #718096;
  /* Muted gray for meta information */
  margin-top: 0;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
  color: #4a5568;
}

/* List element structural cleanup */
ul {
  list-style-type: none;
  /* Removes outdated bullet formatting */
  padding-left: 0;
  margin-top: 12px;
  margin-bottom: 24px;
}

li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 2px solid #e2e8f0;
  /* Sleek vertical separator bar instead of circles */
}

li strong {
  display: block;
  font-size: 1rem;
  color: #2d3748;
  margin-bottom: 4px;
}

li p {
  margin-bottom: 0;
  /* Keep inner paragraphs tight against their bold titles */
  font-size: 0.95rem;
}

/* Anchor tag optimizations */
a {
  color: #3182ce;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

a:hover {
  color: #2b6cb0;
  text-decoration: underline;
}

/* Responsive adjustment for mobile viewports */
@media (max-width: 640px) {
  body {
    padding: 16px;
  }

  .policy-container {
    padding: 24px;
  }

  h1 {
    font-size: 1.6rem;
  }
}