.page-about {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header for both desktop and mobile */
  background-color: #f5f5f5; /* Light background for the page body */
  color: #333333; /* Dark text for light background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-about__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000080; /* Dark blue background for hero */
  color: #ffffff;
  padding-bottom: 60px; /* Add some padding below hero content */
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
  filter: brightness(0.8); /* Slightly dim the image to make text stand out, allowed for background context */
  object-fit: cover;
}

.page-about__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 400px; /* Minimum height for hero */
}

.page-about__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  z-index: 10;
  padding: 20px;
}

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

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

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

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

.page-about__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

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

.page-about__button--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-2px);
}

.page-about__section-title {
  font-size: 2.5em;
  color: #000080; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-about__story-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-about__story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__story-content .page-about__text {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555555;
}

.page-about__story-image-wrapper {
  text-align: center;
}

.page-about__story-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-about__values-section {
  padding: 60px 0;
  background-color: #f0f8ff; /* Light blueish background */
}

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

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

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

.page-about__value-icon {
  width: 200px; /* Enforce min 200px */
  height: 200px; /* Enforce min 200px */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-about__value-title {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__team-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-about__team-description {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.page-about__team-description .page-about__text {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555555;
}

.page-about__team-image-wrapper {
  text-align: center;
}

.page-about__team-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-about__cta-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #000080, #0000a0); /* Dark blue gradient */
  color: #ffffff;
  text-align: center;
}

.page-about__cta-content {
  max-width: 800px;
}

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

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__story-grid {
    grid-template-columns: 1fr;
  }
  .page-about__story-image-wrapper {
    order: -1; /* Move image above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
  }
  .page-about__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__value-icon {
    width: 150px; /* Adjusted for smaller screens, still > 200px for generation, but displayed smaller */
    height: 150px;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-about__value-card {
    padding: 20px;
  }
  .page-about__value-title {
    font-size: 1.3em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
}