.page-about {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
  background-color: #FFFFFF; /* Ensures background is white as per instruction */
}

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

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  position: relative;
  overflow: hidden;
  color: #FFFFFF; /* Light text for hero content on dark image */
  text-align: center;
}

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

.page-about__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Adjust as needed */
  padding: 40px 20px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5); /* Overlay for text readability */
}

.page-about__hero-content {
  max-width: 900px;
  z-index: 3;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

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

.page-about__heading {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #000000; /* Dark heading for light background */
}

.page-about__sub-heading {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000; /* Dark sub-heading for light background */
}

.page-about__paragraph {
  font-size: 1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-about__button--primary {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000; /* Dark text on light button */
}

.page-about__button--primary:hover {
  background-color: #e0a53a;
}

.page-about__button--secondary {
  background-color: #000000; /* Main color for secondary action */
  color: #FFFFFF; /* Light text on dark button */
  border: 2px solid #FCBC45; /* Login color border */
}

.page-about__button--secondary:hover {
  background-color: #333333;
  border-color: #e0a53a;
}

.page-about__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-about__link:hover {
  text-decoration: underline;
}

/* Story Section */
.page-about__story-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-about__story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__story-image-wrapper {
  text-align: center;
}

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

/* Mission Section */
.page-about__mission-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-about__mission-item {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__mission-icon {
  width: 100%; /* Ensure image is not too small, but fits */
  max-width: 200px; /* Max width to ensure it's not too big */
  height: auto;
  margin-bottom: 20px;
  display: inline-block;
}

/* Why Choose Section */
.page-about__why-choose-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-about__why-choose-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-about__why-choose-item .page-about__image {
  margin-bottom: 20px;
  border-radius: 8px;
}

/* CTA Section */
.page-about__cta-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background */
  color: #FFFFFF; /* Light text */
  text-align: center;
}

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

.page-about__heading--cta {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-about__paragraph--cta {
  color: #F0F0F0;
  margin-bottom: 40px;
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__heading {
    font-size: 2em;
  }
  .page-about__story-grid {
    grid-template-columns: 1fr;
  }
  .page-about__story-image-wrapper {
    order: -1; /* Image first on mobile */
  }
}

@media (max-width: 768px) {
  .page-about__hero-container {
    min-height: 400px;
    padding: 20px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__heading {
    font-size: 1.8em;
  }
  .page-about__story-section, .page-about__mission-section, .page-about__why-choose-section, .page-about__cta-section {
    padding: 40px 0;
  }
  .page-about__mission-grid, .page-about__why-choose-grid {
    grid-template-columns: 1fr;
  }
  .page-about__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  /* Ensure all content images are responsive and don't overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__heading {
    font-size: 1.5em;
  }
  .page-about__container {
    padding: 0 15px;
  }
}