/* Outer wrapper styling */
.page-wrapper {
  max-width: 900px;        /* Centered layout */
  margin: 50px auto;       /* Center with spacing */
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Article container */
.page {
  display: block;
}

/* Page title */
.page h1 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  font-weight: 600;
}

/* Content area */
.page .content {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

/* Add some spacing for paragraphs inside content */
.page .content p {
  margin-bottom: 16px;
}

/* Responsive design */
@media (max-width: 600px) {
  .page-wrapper {
    padding: 15px;
  }
  .page h1 {
    font-size: 1.6rem;
  }
  .page .content {
    font-size: 0.95rem;
  }
}
