.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__section-padding {
  padding: 80px 0;
}

.page-about__bg-dark {
  background-color: #000000; /* Main dark background */
  color: #FFFFFF; /* Light text for dark background */
}

.page-about__section-title {
  font-size: 3em;
  text-align: center;
  margin-bottom: 40px;
  color: #000000; /* Default dark color */
}

.page-about__section-title--light {
  color: #FFFFFF;
}

.page-about__text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.page-about__text--light {
  color: #f0f0f0;
}

/* Hero Section */
.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 0;
  background-color: #FFFFFF; /* Light background */
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-about__hero-title {
  font-size: 3.8em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-about__hero-description {
  font-size: 1.3em;
  color: #333333;
  margin-bottom: 40px;
}

.page-about__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-about__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, color 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.page-about__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-about__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-about__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-about__button--login:hover {
  background-color: #000000;
  color: #FCBC45;
  border-color: #000000;
}

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

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

/* Story Section */
.page-about__story-section {
  background-color: #f9f9f9;
}

.page-about__story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.page-about__story-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

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

.page-about__card-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  text-align: left;
}

.page-about__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

/* Unique Section */
.page-about__unique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.page-about__unique-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__item-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-about__item-title--light {
  color: #FCBC45;
}

.page-about__item-text {
  font-size: 1em;
  text-align: left;
}

.page-about__item-text--light {
  color: #e0e0e0;
}

.page-about__item-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

/* Values Section */
.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.page-about__value-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-about__value-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-about__value-text {
  font-size: 0.95em;
  color: #555555;
}

.page-about__values-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.page-about__cta-section {
  background-color: #000000;
  text-align: center;
}

.page-about__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

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

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 40px 15px 0;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    width: 100%;
    max-width: 250px;
  }

  .page-about__section-padding {
    padding: 60px 0;
  }
  .page-about__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-about__text {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-about__unique-grid, .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  
  /* Ensure all images in content area are responsive and not smaller than 200px */
  .page-about img {
    max-width: 100%;
    height: auto;
  }

  .page-about__story-card, .page-about__unique-item, .page-about__value-card {
    padding: 20px;
  }

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

  .page-about__card-text, .page-about__item-text, .page-about__value-text {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 0.95em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__text {
    font-size: 0.9em;
  }
  .page-about__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}