.page-about {
  color: #333333; /* Dark text for default white 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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about__hero-section {
  position: relative;
  background-color: #1A2B4C; /* Midnight Blue fallback */
  padding: 0;
  overflow: hidden;
}

.page-about__hero-container {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-about__hero-content {
  position: absolute;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
  z-index: 1;
}

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

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

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Midnight Blue 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: #e5c100;
  transform: translateY(-3px);
}

.page-about__section-title {
  font-size: 2.5em;
  color: #1A2B4C; /* Midnight Blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-about__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

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

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

.page-about__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

.page-about__value-icon {
  width: 250px;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-about__value-text {
  color: #555555;
  font-size: 0.95em;
}

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

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

.page-about__team-member {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-about__team-photo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #FFD700;
}

.page-about__team-name {
  font-size: 1.6em;
  color: #1A2B4C;
  margin-bottom: 5px;
}

.page-about__team-role {
  font-size: 1.1em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__team-bio {
  color: #555555;
  font-size: 0.95em;
}

.page-about__commitment-section {
  padding: 80px 0;
  text-align: center;
}

.page-about__cta-section {
  background-color: #1A2B4C;
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

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

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__grid, .page-about__values-grid, .page-about__team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller mobile header */
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__grid {
    grid-template-columns: 1fr;
  }
  .page-about__value-icon {
    width: 200px;
    height: auto;
  }
  .page-about__team-photo {
    width: 200px;
    height: 200px;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__cta-button {
    margin: 10px 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  /* Mobile content area images must be responsive */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  .page-about__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-about__value-icon {
    max-width: 100%;
    height: auto;
  }
  .page-about__team-photo {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__card, .page-about__value-item, .page-about__team-member {
    padding: 20px;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
}