/* style/about.css */
/* ----------------------------------------------------------- */
/* Base Styles for About Us Page */
/* ----------------------------------------------------------- */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared, assumed dark */
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
  color: #f0f0f0;
}

/* ----------------------------------------------------------- */
/* Hero Section */
/* ----------------------------------------------------------- */
.page-about__hero-section {
  position: relative;
  padding: 100px 0 60px; /* Base padding */
  text-align: center;
  background: linear-gradient(135deg, #26A9E0, #1a7bb0); /* Gradient with main color */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}