/* Contained, readable text sections */
#about .about-container,
#regionalism,
#cta {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  color: #fff; /* strong body text on dark background */
}

/* Headings inside text sections */
#about h2,
#regionalism h2,
#cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FFD700; /* gold for contrast */
}

/* Paragraphs inside text sections */
#about p,
#regionalism p,
#cta p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #ddd; /* light gray for readability */
}

/* CTA button */
.cta-button {
  display: inline-block;
  background-color: #d4af37; /* gold tone */
  color: #000;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #b38f2c;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #111; /* subtle dark background */
}

footer p {
  margin: 0;
  color: #fff;
}
