.page-about {
  color: #ffffff; /* Light text for dark body background #111 */
}

.page-about__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header on desktop */
  min-height: 500px;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5); /* Darken image slightly for text readability */
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text */
  border-radius: 10px;
}

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

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

.page-about__cta-button {
  display: inline-block;
  background-color: #DC143C; /* Action button color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

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

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

.page-about__mission-section {
  background-color: #0A0A0A;
  padding: 80px 0;
}

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

.page-about__mission-text {
  flex: 1;
}

.page-about__mission-text p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-about__mission-image {
  flex: 1;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  width: 100%;
  height: auto; /* Ensure image scales correctly */
  min-width: 200px; /* Minimum display size */
  min-height: 200px; /* Minimum display size */
}

.page-about__values-section {
  background-color: #111;
  padding: 80px 0;
}

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

.page-about__value-card {
  background: rgba(255, 255, 255, 0.08); /* Slightly lighter background for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

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

.page-about__value-icon {
  width: 100%;
  height: auto;
  max-width: 200px; /* Max width for icons within card */
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700); /* Glow effect for icons */
  min-width: 200px; /* Minimum display size */
  min-height: 200px; /* Minimum display size */
}

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

.page-about__value-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #c0c0c0;
}

.page-about__cta-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #1E90FF 100%); /* Gradient background */
  padding: 80px 20px;
  text-align: center;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-about__cta-text {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-about__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-about__cta-link {
  display: block;
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1em;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.page-about__cta-link:hover {
  color: #E63946;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__mission-content {
    flex-direction: column;
    text-align: center;
  }
  .page-about__mission-image {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px); /* Mobile header offset */
  }
  .page-about__hero-content {
    padding: 20px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-text {
    font-size: 1.1em;
  }
  /* Ensure all content images scale correctly and don't overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  /* Content area image size enforcement for mobile */
  .page-about__mission-image,
  .page-about__value-icon {
    min-width: 200px; /* Enforce min size on mobile as well */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__value-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-text {
    font-size: 1em;
  }
}

/* No filter: invert(), sepia(), hue-rotate(), saturate() etc. */
/* All images in content area must be >= 200px */
.page-about__mission-image, .page-about__value-icon {
  width: 100%; /* Allows scaling */
  height: auto;
  object-fit: cover;
}