/* Force all main text to pure white */
.text-section,
.text-section p,
.text-section a,
.text-section h2 {
  color: #FFFFFF !important;  /* override dull gray */
  font-weight: 500;           /* make a bit bolder */
}

/* Specific for "About This Site" title */
.text-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 0.75rem;
}

/* Links inside text */
.text-section a {
  text-decoration: none;
  color: #FFFFFF !important;
}

.text-section a:hover {
  color: #00FFC6 !important; /* bright teal on hover */
}

/* Paragraphs */
.text-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFFFFF !important;
}