.page-about {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #000; /* Ensure page background is dark */
}

.page-about__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0; /* Adjust padding as hero image should fill */
}

.page-about__hero-container {
  position: relative;
  max-width: 1920px; /* Limit hero container width */
  margin: 0 auto;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image slightly for text readability */
}

.page-about__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-about__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-about__hero-button {
  display: inline-block;
  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;
}

.page-about__hero-button--primary {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-about__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__hero-button--secondary {
  background-color: #1A1A2E;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about__hero-button--secondary:hover {
  background-color: #33334d;
  transform: translateY(-3px);
}

.page-about__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: left;
}

.page-about__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-about__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-about__paragraph--center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-about__image--left {
  float: left;
  width: 45%;
  margin-right: 30px;
  margin-bottom: 30px;
}

.page-about__image--right {
  float: right;
  width: 45%;
  margin-left: 30px;
  margin-bottom: 30px;
}

.page-about__story-section::after,
.page-about__future-section::after {
  content: '';
  display: block;
  clear: both;
}

.page-about__section--dark {
  background-color: #1A1A2E;
  padding: 80px 0;
}

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

.page-about__value-card,
.page-about__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-card:hover,
.page-about__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-about__value-title,
.page-about__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__value-description,
.page-about__feature-description {
  font-size: 1em;
  line-height: 1.7;
  color: #cccccc;
}

.page-about__feature-icon {
  width: 100%; /* Ensure feature images are not small */
  height: 200px; /* Minimum height for feature images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-about__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.page-about__button--primary {
  background-color: #FFD700;
  color: #1A1A2E;
  border: 2px solid #FFD700;
}

.page-about__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-about__button--promo {
  margin-top: 30px;
  background-color: #FFD700;
  color: #1A1A2E;
  border: 2px solid #FFD700;
}

.page-about__button--promo:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin-top: 40px;
}

.page-about__cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #1A1A2E, #000000);
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

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

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

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

  .page-about__image--left,
  .page-about__image--right {
    width: 100%;
    float: none;
    margin: 30px 0;
  }
}

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

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

  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__hero-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-about__content-wrapper {
    padding: 40px 15px;
  }

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-about__paragraph {
    font-size: 1em;
  }

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

  .page-about__value-card,
  .page-about__feature-card {
    padding: 25px;
  }

  .page-about__value-title,
  .page-about__feature-title {
    font-size: 1.5em;
  }

  .page-about__feature-icon {
    height: 180px; /* Adjust for smaller screens but maintain min size */
  }

  .page-about__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

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

  .page-about__cta-buttons .page-about__button {
    width: 80%;
    margin: 0 auto;
  }

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