/* style/about.css */

/* --- General Page Styling --- */
.page-about {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #1a1a2e; /* Dark body background */
  color: #ffffff; /* Light text for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-about__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__section-title--light {
  color: #ffffff; /* White title for sections with primary brand color background */
}

.page-about__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__section-description--light {
  color: #ffffff;
}