/* Container for policy sections */
section {
  background-color: #ffffff;
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a1a;
}

/* Headings */
section h1 {
  color: #003366; /* Ohrid blue */
  font-weight: 900;
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  text-align: center;
  letter-spacing: 1px;
}

section h2 {
  color: #004080;
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #66a3ff;
  padding-bottom: 0.25rem;
}

/* Paragraphs */
section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Links */
section a {
  color: #1e40af; /* brighter blue */
  text-decoration: underline;
  transition: color 0.3s ease;
}

section a:hover,
section a:focus {
  color: #004080;
  outline: none;
}

/* Lists */
section ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

section ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 640px) {
  section {
    padding: 1.5rem 1.5rem;
    font-size: 0.95rem;
  }

  section h1 {
    font-size: 1.75rem;
  }

  section h2 {
    font-size: 1.25rem;
  }
}
