/* style/about.css */

/* --- General Styles --- */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #121212 (dark), so text should be light */
  background-color: #121212; /* Match body background for consistency within main */
}

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

.page-about__section {
  padding: 80px 0;
  text-align: center;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand color for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__sub-title {
  font-size: 1.8em;
  color: #ffffff; /* Light text for sub-titles on dark background */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__section-paragraph,
.page-about__text-block,
.page-about__list {
  font-size: 1.1em;
  color: #f0f0f0; /* Slightly off-white for body text */
  margin-bottom: 20px;
  text-align: left;
}

.page-about__list {
  list-style: disc inside;
  padding-left: 20px;
}

.page-about__list li {
  margin-bottom: 10px;
}

/* --- Buttons --- */
.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  margin: 10px;
  box-sizing: border-box;
  text-align: center;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-about__btn-primary {
  background-color: #C30808; /* Custom color for Register/Login */
  color: #FFFF00; /* Custom font color for Register/Login */
  border: 2px solid #C30808;
}