.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 below fixed header */
}

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

/* Hero Section */
.page-about__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: #0056b3; /* Darker blue for background to contrast with image */
}

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

.page-about__hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-about__hero-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color for CTA */
  color: #000000; /* Dark text for gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 200px; /* Ensure button is not too small */
}

.page-about__hero-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-about__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

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

.page-about__story-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-about__story-image {
  flex: 1;
  min-width: 300px; /* Minimum display size for image */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-about__story-text {
  flex: 2;
  min-width: 300px;
}

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

.page-about__story-button {
  display: inline-block;
  background-color: #007bff; /* Primary color for button */
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 200px; /* Ensure button is not too small */
}

.page-about__story-button:hover {
  background-color: #0056b3;
}

/* Values Section */
.page-about__values-section {
  padding: 60px 0;
  background-color: #e9ecef;
}

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

.page-about__value-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
}

.page-about__value-icon {
  width: 200px; /* Min display size */
  height: 150px; /* Min display size */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-about__value-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-about__value-description {
  font-size: 1em;
  color: #555555;
}

/* Call to Action Section */
.page-about__cta-section {
  padding: 80px 0;
  background-color: #007bff; /* Primary color background */
  color: #ffffff;
  text-align: center;
}

.page-about__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffc107; /* Gold for emphasis */
}

.page-about__cta-description {
  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;
  flex-wrap: wrap;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 200px; /* Ensure button is not too small */
}

.page-about__cta-button--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #000000;
}

.page-about__cta-button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-about__cta-button--secondary {
  background-color: #ffffff;
  color: #007bff; /* Primary color text */
  border: 2px solid #007bff;
}

.page-about__cta-button--secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 60px 20px;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__story-content {
    flex-direction: column;
  }
  .page-about__story-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__value-icon {
    width: 200px; /* Ensure min display size on mobile */
    height: 150px; /* Ensure min display size on mobile */
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-button {
    width: 100%;
    max-width: 300px; /* Constrain button width on mobile */
  }
  /* Ensure images in content area do not overflow on mobile */
  .page-about img {
    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__section-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
}