.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 below fixed header */
}

.page-about__hero-section {
  background-color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-container {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-about__hero-title {
  font-size: 3.2em;
  color: #000000; /* Main brand color */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-about__hero-cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #FFFFFF; /* White text for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-about__hero-cta-button:hover {
  background-color: #e0a53b;
}

.page-about__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.page-about__story-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 30px;
}

.page-about__story-paragraph {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
  text-align: left;
}

.page-about__story-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-about__mission-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.page-about__mission-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 40px;
}

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

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

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

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

.page-about__mission-card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

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

.page-about__why-choose-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.page-about__why-choose-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-about__why-choose-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.page-about__why-choose-list {
  list-style: none;
  padding: 0;
}

.page-about__why-choose-item {
  background-color: #FFFFFF;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-about__why-choose-item-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-about__why-choose-item-description {
  font-size: 1em;
  color: #555555;
}

.page-about__cta-section {
  background-color: #000000; /* Main brand color for CTA background */
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

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

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

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

.page-about__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text for contrast */
  padding: 18px 35px;
  border-radius: 50px;
  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: #e0a53b;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }

  .page-about__hero-description,
  .page-about__story-paragraph,
  .page-about__mission-card-description,
  .page-about__why-choose-item-description,
  .page-about__cta-description {
    font-size: 1em;
  }

  .page-about__story-title,
  .page-about__mission-title,
  .page-about__why-choose-title {
    font-size: 2em;
  }

  .page-about__cta-title {
    font-size: 2.2em;
  }

  .page-about__hero-section,
  .page-about__story-section,
  .page-about__mission-section,
  .page-about__why-choose-section,
  .page-about__cta-section {
    padding: 40px 15px;
  }

  .page-about__mission-grid {
    grid-template-columns: 1fr;
  }

  /* Ensure images do not overflow on mobile */
  .page-about img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content area images maintain minimum size where applicable, but respect max-width: 100% */
  .page-about__story-image, .page-about__mission-card-icon {
    min-width: 200px; /* Enforce minimum size if image is not naturally larger */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }

  .page-about__hero-cta-button,
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-about__cta-title {
    font-size: 1.8em;
  }
}