.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 not hidden by fixed header */
}

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

.page-about__hero-section {
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF; /* White text for dark background */
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  z-index: 1;
}

.page-about__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-button,
.page-about__why-choose-button,
.page-about__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for light button */
  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;
  border: none;
  cursor: pointer;
}

.page-about__hero-button:hover,
.page-about__why-choose-button:hover,
.page-about__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-about__story-section,
.page-about__vision-values-section,
.page-about__why-choose-us-section,
.page-about__cta-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-about__story-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  text-align: left;
}

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

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

.page-about__story-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-about__vision-values-section {
  background-color: #f5f5f5;
}

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

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

.page-about__vision-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-about__vision-icon {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-about__vision-item-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

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

.page-about__why-choose-us-section {
  background-color: #FFFFFF;
}

.page-about__why-choose-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  text-align: left;
}

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

.page-about__why-choose-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-about__why-choose-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

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

.page-about__why-choose-item::before {
  content: '✓';
  color: #FCBC45; /* Accent color */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-about__why-choose-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-about__cta-section {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  padding: 80px 20px;
}

.page-about__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45; /* Accent color */
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__hero-description {
    font-size: 1.2em;
  }
  .page-about__story-content,
  .page-about__why-choose-content {
    flex-direction: column;
  }
  .page-about__story-image,
  .page-about__why-choose-image {
    max-width: 80%;
  }
  .page-about__story-text,
  .page-about__why-choose-description {
    flex: none;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 60px 15px;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-button,
  .page-about__why-choose-button,
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__story-section,
  .page-about__vision-values-section,
  .page-about__why-choose-us-section,
  .page-about__cta-section {
    padding: 40px 0;
  }
  .page-about__story-title,
  .page-about__vision-title,
  .page-about__why-choose-title,
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__story-text,
  .page-about__vision-item-text,
  .page-about__why-choose-description,
  .page-about__why-choose-item {
    font-size: 0.95em;
  }
  .page-about__vision-grid {
    grid-template-columns: 1fr;
  }
  .page-about__story-image,
  .page-about__why-choose-image {
    max-width: 95%;
  }
  /* Ensure all content area images are responsive and do not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__story-title,
  .page-about__vision-title,
  .page-about__why-choose-title,
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__vision-item-title {
    font-size: 1.5em;
  }
  .page-about__vision-icon {
    width: 200px;
    height: 200px;
  }
}