.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); /* Ensure content is not hidden by fixed header */
}

.page-about__hero-section {
  position: relative;
  background-color: #0056B3; /* Primary color background */
  color: #ffffff;
  padding: 0;
  overflow: hidden;
}

.page-about__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px; /* Limit hero width for better readability */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim the image for text readability */
}

.page-about__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 80%;
  z-index: 10;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Secondary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Secondary color for button */
  color: #0056B3; /* Primary color for button text */
  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-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-about__story-section,
.page-about__mission-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.page-about__story-section {
  background-color: #ffffff;
}

.page-about__story-title,
.page-about__mission-title {
  font-size: 2.5em;
  color: #0056B3; /* Primary color for titles */
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__story-paragraph {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__story-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

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

.page-about__mission-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-about__mission-item:hover {
  transform: translateY(-5px);
}

.page-about__mission-icon {
  width: 100%;
  max-width: 250px; /* Ensure images are not too small */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__mission-subtitle {
  font-size: 1.6em;
  color: #FFD700; /* Secondary color for subtitles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__mission-description {
  font-size: 1em;
  color: #666666;
}

.page-about__cta-section {
  background: linear-gradient(135deg, #0056B3, #003a75); /* Gradient with primary color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-about__cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-about__cta-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #FFD700; /* Secondary color for CTA title */
  font-weight: bold;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Secondary color for button */
  color: #0056B3; /* Primary color for button text */
  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;
  margin-bottom: 20px;
}

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

.page-about__cta-link {
  display: block;
  color: #ffffff;
  text-decoration: underline;
  font-size: 1em;
  transition: color 0.3s ease;
}

.page-about__cta-link:hover {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__story-title,
  .page-about__mission-title {
    font-size: 2.2em;
  }
  .page-about__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-about__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-about__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__story-title,
  .page-about__mission-title {
    font-size: 1.8em;
  }
  .page-about__story-paragraph {
    font-size: 0.95em;
  }
  .page-about__mission-grid {
    grid-template-columns: 1fr;
  }
  .page-about__mission-item {
    padding: 25px;
  }
  .page-about__mission-subtitle {
    font-size: 1.4em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Mobile content image constraint */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  .page-about__story-image, 
  .page-about__mission-icon {
    min-width: 200px; /* Ensure content images are not too small */
    min-height: 200px;
    object-fit: cover; /* Maintain aspect ratio and fill space */
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__story-title,
  .page-about__mission-title {
    font-size: 1.6em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
}