.page-about {
  color: #333333; /* Dark text for default light body background */
}

.page-about__hero-section {
  background-color: #003366; /* Main brand color for hero background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  padding-bottom: 80px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary gold for emphasis */
  line-height: 1.2;
  font-weight: 700;
}

.page-about__hero-description {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Dark blue text on gold */
  padding: 15px 40px;
  border-radius: 50px;
  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__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
  position: relative;
  z-index: 0;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-about__story-section {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.page-about__story-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-about__story-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
}

.page-about__story-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.page-about__story-text {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-about__story-text p {
  margin-bottom: 20px;
}

.page-about__story-image-wrapper {
  flex: 1;
  min-width: 400px; /* Ensure image is not too small */
}

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

.page-about__story-button {
  display: inline-block;
  background-color: #003366; /* Dark blue button */
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-about__story-button:hover {
  background-color: #004d99;
}

.page-about__mission-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.page-about__mission-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-about__mission-title {
  font-size: 2.8em;
  color: #003366;
  margin-bottom: 60px;
  font-weight: 700;
}

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

.page-about__mission-card {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-about__mission-icon {
  width: 200px; /* Minimum size requirement */
  height: 150px; /* Adjusted for aspect ratio, ensures min 200px width */
  object-fit: contain;
  margin-bottom: 25px;
}

.page-about__card-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__mission-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-about__cta-section {
  background-color: #FFD700; /* Auxiliary gold for CTA background */
  padding: 80px 20px;
  text-align: center;
  color: #003366; /* Dark blue text on gold */
}

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

.page-about__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #003366;
  font-weight: 700;
}

.page-about__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #003366; /* Dark blue button */
  color: #ffffff;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-right: 20px;
}

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

.page-about__cta-link {
  display: inline-block;
  color: #003366;
  text-decoration: underline;
  font-size: 1.1em;
  padding: 18px 0;
  transition: color 0.3s ease;
}

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

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__story-content {
    flex-direction: column;
    gap: 40px;
  }
  .page-about__story-image-wrapper {
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-about__story-title, .page-about__mission-title, .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__story-section, .page-about__mission-section, .page-about__cta-section {
    padding: 60px 15px;
  }
  .page-about__story-text, .page-about__mission-card p {
    font-size: 0.95em;
  }
  .page-about__mission-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-button, .page-about__cta-link {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page-about__cta-button {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .page-about__cta-link {
    display: block;
  }
  /* Mobile content area image overflow prevention */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__story-title, .page-about__mission-title, .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__hero-section {
    padding-bottom: 40px;
  }
  .page-about__hero-content {
    margin-bottom: 20px;
  }
}