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

.page-about__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(0.6); /* Slightly dim the background image for text readability */
}

.page-about__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Adjust as needed */
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B342;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-about__hero-description {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #E0B342;
  color: #0A2463;
  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: #f5db9c;
  transform: translateY(-3px);
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__story-section, .page-about__mission-section {
  padding: 80px 0;
}

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

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

.page-about__section-title {
  font-size: 2.5em;
  color: #0A2463;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

.page-about__text {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-about__story-content, .page-about__mission-content {
  flex: 1;
}

.page-about__story-image-wrapper, .page-about__mission-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-about__story-image, .page-about__mission-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-about__story-button, .page-about__mission-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-about__story-button:hover, .page-about__mission-button:hover {
  background-color: #1f4cbd;
}

.page-about__values-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-about__values-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.page-about__values-item::before {
  content: '✓';
  color: #E0B342;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-about__why-choose-us-section {
  background-color: #f0f0f0;
  padding: 80px 0;
  text-align: center;
}

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

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

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

.page-about__feature-icon {
  width: 100%; /* Ensure images take full card width */
  height: auto;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-about__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #E0B342;
  color: #0A2463;
  padding: 15px 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: #f5db9c;
  transform: translateY(-3px);
}

.page-about__cta-banner {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-about__banner-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #E0B342;
}

.page-about__banner-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-about__banner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-about__banner-button {
  display: inline-block;
  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__banner-button--primary {
  background-color: #E0B342;
  color: #0A2463;
}

.page-about__banner-button--primary:hover {
  background-color: #f5db9c;
  transform: translateY(-3px);
}

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

.page-about__banner-button--secondary:hover {
  background-color: #E0B342;
  color: #0A2463;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__container {
    flex-direction: column;
    text-align: center;
  }
  .page-about__story-image-wrapper, .page-about__mission-image-wrapper {
    order: -1; /* Image first on mobile for story section */
  }
  .page-about__mission-image-wrapper {
    order: 1; /* Text first on mobile for mission section */
  }
  .page-about__story-content, .page-about__mission-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__container {
    padding: 30px 15px;
  }
  .page-about__hero-container {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-about__story-section, .page-about__mission-section, .page-about__why-choose-us-section, .page-about__cta-banner {
    padding: 50px 0;
  }
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__banner-title {
    font-size: 2.2em;
  }
  .page-about__banner-description {
    font-size: 1.1em;
  }
  .page-about__banner-buttons {
    flex-direction: column;
  }
  .page-about__banner-button {
    width: 100%;
    max-width: 300px;
  }
  /* Ensure images do not overflow on mobile */
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__hero-button, .page-about__cta-button, .page-about__banner-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}