.page-about {
  color: #FFF6D6; /* Text Main color for deep dark body background */
  background-color: #0A0A0A; /* Matches body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #0A0A0A;
  position: relative;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-about__hero-content-wrapper {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  position: relative;
  z-index: 2;
  background-color: #111111; /* Card BG */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12; /* Border color */
}

.page-about__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

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

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

.page-about__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.page-about__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #FFF6D6;
}

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

.page-about__mission-card,
.page-about__feature-card {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border color */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-about__mission-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-about__card-title {
  font-size: 1.6em;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__card-text {
  font-size: 1em;
  color: #FFF6D6;
  flex-grow: 1;
}

.page-about__story-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
}

.page-about__story-content p {
  font-size: 1.1em;
  color: #FFF6D6;
  text-align: justify;
}

.page-about__story-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #3A2A12;
}

.page-about__team-section p {
  font-size: 1.1em;
  color: #FFF6D6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-about__team-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #3A2A12;
}

.page-about__partnerships-section {
  background-color: #111111; /* Card BG */
  padding: 60px 0;
  border-top: 1px solid #3A2A12;
  border-bottom: 1px solid #3A2A12;
}

.page-about__partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-about__partner-logo {
  width: 167px;
  height: 127px;
  object-fit: contain;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease;
}

.page-about__partner-logo:hover {
  transform: translateY(-5px);
}

.page-about__future-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #3A2A12;
}

.page-about__cta-section {
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  padding: 80px 20px;
  text-align: center;
  color: #000000; /* Dark text for light gradient background */
}

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

.page-about__cta-description {
  font-size: 1.2em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #000000; /* Dark text for button */
  border: 2px solid #DDA11D;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #000000; /* Dark text for button */
  border: 2px solid #000000;
}

.page-about__btn-secondary:hover {
  background-color: #000000;
  color: #FFF6D6;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* General content area text styling */
.page-about p, .page-about li {
  color: #FFF6D6;
}

/* Color contrast fixes */
.page-about__dark-bg {
  color: #ffffff; /* Ensure light text on dark brand background */
  background-color: #F2C14E; /* Example brand color as dark background */
}

.page-about__light-bg {
  color: #333333; /* Ensure dark text on light background */
  background-color: #ffffff;
}

/* Ensure all content images meet minimum size in CSS */
.page-about img:not(.page-about__partner-logo):not(.page-about__mission-icon) {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-content-wrapper {
    margin-top: -60px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile: controlled by shared's media */
    padding-bottom: 40px;
  }

  .page-about__hero-content-wrapper {
    margin-top: -40px;
    padding: 25px;
  }

  .page-about__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__section-title {
    font-size: clamp(1.6em, 5vw, 2.2em);
  }

  .page-about__section-description,
  .page-about__story-content p,
  .page-about__team-section p {
    font-size: 1em;
    text-align: left;
  }

  .page-about__mission-grid,
  .page-about__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__story-content {
    flex-direction: column;
  }

  .page-about__story-image,
  .page-about__team-image,
  .page-about__future-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__partner-logos {
    gap: 15px;
  }

  .page-about__partner-logo {
    width: 120px;
    height: 90px;
  }

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

  .page-about__cta-description {
    font-size: 1em;
  }

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

  .page-about__cta-button,
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about a[class*="button"],
  .page-about a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__cta-buttons,
  .page-about__button-group,
  .page-about__btn-container,
  .page-about__section,
  .page-about__card,
  .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-about__hero-content-wrapper {
    margin-top: -30px;
    padding: 20px;
  }

  .page-about__hero-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

  .page-about__section-title {
    font-size: clamp(1.4em, 6vw, 1.8em);
  }

  .page-about__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}