.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;
}

/* Hero Section */
.page-about__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Highlight title with accent color */
}

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

.page-about__hero-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-about__hero-button:hover {
  background-color: #e0a53c;
}

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

/* Story Section */
.page-about__story-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-about__story-content {
  flex: 1;
  padding-right: 40px;
}

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

.page-about__story-text {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-about__story-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__story-link:hover {
  color: #e0a53c;
}

.page-about__story-image {
  width: 500px;
  height: 375px;
  border-radius: 8px;
  object-fit: cover;
}

.page-about__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Mission Section */
.page-about__mission-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.page-about__mission-content {
  flex: 1;
  padding-left: 40px;
}

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

.page-about__mission-text {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-about__mission-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__mission-link:hover {
  color: #e0a53c;
}

.page-about__mission-image {
  width: 500px;
  height: 375px;
  border-radius: 8px;
  object-fit: cover;
}

/* Values Section */
.page-about__values-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-about__values-title {
  font-size: 2.8em;
  margin-bottom: 50px;
  color: #000000;
}

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

.page-about__value-card {
  background-color: #000000;
  color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__value-heading {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FCBC45;
}

.page-about__value-text {
  font-size: 1em;
}

.page-about__values-image {
  width: 600px;
  height: 450px;
  border-radius: 8px;
  object-fit: cover;
  margin-top: 40px;
}

/* Call to Action Section */
.page-about__cta-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  text-align: center;
}

.page-about__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-about__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-about__cta-button--register:hover {
  background-color: #f0f0f0;
}

.page-about__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-about__cta-button--login:hover {
  background-color: #e0a53c;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__story-image, .page-about__mission-image {
    width: 400px;
    height: 300px;
  }
  .page-about__values-image {
    width: 500px;
    height: 375px;
  }
}

@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__container {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
  .page-about__story-content, .page-about__mission-content {
    padding: 0;
  }
  .page-about__story-image, .page-about__mission-image, .page-about__values-image {
    width: 100%;
    height: auto; /* Ensure images scale responsively */
    max-width: 100%; /* Important for mobile content area images */
  }
  .page-about__story-title, .page-about__mission-title, .page-about__values-title, .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-buttons {
    flex-direction: column;
  }
  .page-about__hero-image, .page-about__story-image, .page-about__mission-image, .page-about__values-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__story-title, .page-about__mission-title, .page-about__values-title, .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__value-heading {
    font-size: 1.5em;
  }
  .page-about__cta-button {
    width: 100%;
  }
}