/* pages.css */

/* Główne style dla stron statycznych */
.page .page-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.4rem;
}

.page p {
  margin-bottom: 1rem;
}

.page ul,
.page ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page ul li,
.page ol li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.page a {
  text-decoration: underline;
}

.page a:hover {
  color: var(--link-hover);
  text-decoration: none;
}