.page-about {
  color: #333333; /* Deep dark grey for text on light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

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

.page-about__hero-section {
  background-color: #000080; /* Dark blue background for hero */
  color: #ffffff; /* White text on dark blue */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #000066;
}

.page-about__hero-image {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-about__section-title {
  font-size: 2.5em;
  color: #000080; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-about__mission-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-about__mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.page-about__mission-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__mission-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-about__card-title {
  font-size: 1.8em;
  color: #000080;
  margin-bottom: 15px;
}

.page-about__card-text {
  font-size: 1.1em;
  color: #555555;
}

.page-about__values-section {
  padding: 80px 0;
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-about__value-item {
  background-color: #000080;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-about__value-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__value-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-about__journey-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-about__journey-intro {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-about__journey-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 50px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-about__journey-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-about__journey-point {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-about__point-year {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-about__point-description {
  font-size: 1em;
  color: #555555;
}

.page-about__cta-section {
  background-color: #000080; /* Dark blue background for CTA */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-about__cta-text {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
}

.page-about__cta-button:hover {
  background-color: #e6c200;
  color: #000066;
  transform: translateY(-3px);
}

.page-about__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-about__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.2em;
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__section-title {
    font-size: 2em;
  }

  .page-about__mission-grid {
    grid-template-columns: 1fr;
  }

  .page-about__values-grid {
    grid-template-columns: 1fr;
  }

  .page-about__journey-points {
    grid-template-columns: 1fr;
  }

  .page-about__cta-title {
    font-size: 2em;
  }

  .page-about__cta-text {
    font-size: 1.1em;
  }

  .page-about__cta-button {
    width: 100%;
    margin-bottom: 15px;
  }

  .page-about__cta-button:last-child {
    margin-bottom: 0;
  }

  .page-about__hero-image,
  .page-about__mission-image,
  .page-about__journey-image {
    max-width: 100%;
    height: auto;
  }
}