.page-about {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-about__hero-section {
  background-color: #0A2463; /* Midnight Blue background */
  color: #ffffff; /* White text for dark background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E3B505; /* Golden Yellow for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-about__hero-cta-button {
  display: inline-block;
  background-color: #E3B505; /* Golden Yellow button */
  color: #0A2463; /* Midnight Blue text on button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__hero-cta-button:hover {
  background-color: #f5db9c; /* Lighter gold on hover */
  transform: translateY(-3px);
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Midnight Blue for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E3B505;
  border-radius: 2px;
}

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

.page-about__mission-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-about__mission-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-about__mission-text {
  flex: 1;
  min-width: 300px;
}

.page-about__mission-text p {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #555555;
}

.page-about__button {
  display: inline-block;
  background-color: #0A2463; /* Midnight Blue button */
  color: #ffffff; /* White text on button */
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__button:hover {
  background-color: #1a3c7c; /* Darker blue on hover */
}

.page-about__values-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-about__value-card {
  background-color: #fcfcfc;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-about__card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-about__card-link {
  color: #E3B505; /* Golden Yellow link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__card-link:hover {
  color: #cc9c04;
}

.page-about__cta-section {
  background-color: #E3B505; /* Golden Yellow background */
  color: #0A2463; /* Midnight Blue text for contrast */
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 60px auto;
  max-width: 1000px;
}

.page-about__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A2463;
}

.page-about__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #0A2463; /* Midnight Blue button */
  color: #ffffff; /* White text on button */
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__cta-button:hover {
  background-color: #1a3c7c; /* Darker blue on hover */
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__mission-content {
    flex-direction: column;
  }
  .page-about__mission-image {
    max-width: 100%;
  }
  .page-about__mission-text {
    text-align: center;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__card-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-text {
    font-size: 1em;
  }

  /* Ensure content area images do not overflow on mobile */
  .page-about__mission-image,
  .page-about__values-grid img,
  .page-about__container img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure no content area causes horizontal scrolling */
  .page-about {
    overflow-x: hidden;
  }
}