.page-about {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--background); /* #0D0E12 */
  color: var(--text-main); /* #FFF3E6 */
}

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

/* Hero Section */
.page-about__hero-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px; /* Space below content */
}

.page-about__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.page-about__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 5; /* 1920x600 */
  object-fit: cover;
  object-position: center;
}

.page-about__hero-content {
  text-align: center;
  padding: 20px 15px;
  max-width: 900px;
  margin: 0 auto;
}

.page-about__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: var(--text-main); /* #FFF3E6 */
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Use clamp for H1 to avoid fixed large size */
}

.page-about__intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  background: var(--button); /* linear-gradient(180deg, #FFA53A 0%, #D96800 100%) */
  color: #FFF;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-about__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

/* General Section Styles */
.page-about__mission-section,
.page-about__journey-section,
.page-about__cta-section {
  padding: 60px 0;
}

.page-about__mission-section {
  background-color: var(--card-bg); /* #17191F */
}

.page-about__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color); /* #FF8C1A */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color); /* #FFA53A */
  margin: 15px auto 0;
}

.page-about__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-about__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-about__text-content {
  flex: 1;
  min-width: 300px;
}

.page-about__text-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.page-about__values-list li {
  background-color: rgba(255, 140, 26, 0.1); /* Primary color with transparency */
  padding: 10px 15px;
  margin-bottom: 10px;
  border-left: 4px solid var(--primary-color); /* #FF8C1A */
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.5;
}

.page-about__list-highlight {
  color: var(--primary-color); /* #FF8C1A */
}

.page-about__image-container {
  flex: 1;
  min-width: 300px;
  max-width: 600px; /* Ensures images don't get too wide on large screens */
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-about__image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
  filter: none; /* No CSS filter */
}

.page-about__secondary-cta {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid var(--border); /* #A84F0C */
  border-radius: 8px;
  color: var(--primary-color); /* #FF8C1A */
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin-top: 20px;
}

.page-about__secondary-cta:hover {
  background-color: var(--primary-color); /* #FF8C1A */
  color: #FFF;
}

/* Final CTA Section */
.page-about__cta-section {
  text-align: center;
  background-color: var(--deep-orange); /* #D96800 */
  padding: 80px 0;
}

.page-about__cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #FFF;
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-main); /* #FFF3E6 */
}

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

.page-about__main-cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.5);
}

.page-about__main-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 165, 58, 0.7);
}

.page-about__secondary-cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  border: 2px solid #FFF;
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.page-about__secondary-cta-button:hover {
  background-color: #FFF;
  color: var(--deep-orange); /* #D96800 */
}

/* Animation styles for JS */
.page-about__mission-section,
.page-about__journey-section,
.page-about__cta-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-about__fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-about__hero-content {
    padding: 15px 10px;
  }

  .page-about__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-about__intro-text {
    font-size: 1rem;
  }

  .page-about__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-about__content-wrapper--reverse {
    flex-direction: column; /* Stack vertically for mobile */
  }

  .page-about__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-about__image-container {
    max-width: 100%;
  }

  .page-about__cta-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-about__cta-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__main-cta-button,
  .page-about__secondary-cta-button {
    width: 100%;
    max-width: 300px; /* Constrain button width */
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-about__container {
    padding: 0 10px;
  }
  /* Enforce mobile image responsiveness */
  .page-about__hero-banner img,
  .page-about__image-container img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure content area images are never smaller than 200px display size */
.page-about img {
  min-width: 200px;
  min-height: 200px;
}
/* Override for responsive, but ensure it doesn't shrink below 200px */
@media (max-width: 768px) {
  .page-about img {
    min-width: unset; /* Allow flexibility */
    min-height: unset; /* Allow flexibility */
  }
  .page-about__hero-banner img,
  .page-about__image-container img {
    width: 100%; /* Ensure it fills container */
    height: auto;
    object-fit: cover;
  }
}