/* Generic Page Styles */
.page-container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.page-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2563eb;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 10px;
}

.page-container h2 {
  font-size: 1.4rem;
  margin-top: 25px;
  color: #111827;
}

.page-container p, 
.page-container ul {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #374151;
}

.page-container ul {
  padding-left: 20px;
  list-style: disc;
}

/* Links */
.page-container a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}
.page-container a:hover {
  text-decoration: underline;
}
