body {
  margin: 0;
  padding: 80px 20px 40px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #fff;
  margin-bottom: 6rem;
}

@media (min-width: 1024px) {
  body {
    padding: 80px 10% 40px;
  }
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* Center the overall content wrapper and limit width */
.content {
  max-width: 900px;
  margin: 0 auto;
}

/* Keep the main header centred like the home page */
.content header {
  text-align: center;
}

/* Left-align long-form content for better readability */
.content section {
  text-align: left;
  margin-bottom: 2rem;
}

/* Headings sizing similar to index.css */
.content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
}

/* Body copy colours & spacing aligned with homepage */
.content p,
.content ul {
  font-size: 1.1rem;
  color: #aaa;
  line-height: 1.6;
}

/* List indentation */
.content ul {
  padding-left: 1.2rem;
}

/* Date subtle colour */
.date {
  color: #aaa;
  font-size: 1rem;
  margin-top: -0.5rem;
}

/* Links styling */
.content a {
  color: #64b5f6;
  text-decoration: underline;
}

.content a:hover {
  color: #90caf9;
}

/* Resource links section */
.resource-links {
  margin: 2rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.resource-links a {
  display: block;
  margin: 0.5rem 0;
  color: #64b5f6;
  text-decoration: underline;
}

.resource-links a:hover {
  color: #90caf9;
}

/* Footer text styling */
.footer-text {
  margin-top: 2rem;
  font-style: italic;
  text-align: center;
  color: #aaa;
} 