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

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

.page-about__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  color: #FFFFFF; /* Light text for dark overlay */
  text-align: center;
  background-color: #000000; /* Fallback dark background */
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability, NO COLOR CHANGE */
}

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

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

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

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

.page-about__mission-section,
.page-about__values-section,
.page-about__security-section,
.page-about__cta-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-about__mission-section {
  background-color: #f9f9f9;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 60px;
}

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

.page-about__mission-image {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 600px; /* Example display width */
  height: 450px; /* Example display height */
  object-fit: cover;
}

.page-about__mission-text {
  flex: 1;
  font-size: 1.1em;
}

.page-about__paragraph {
  margin-bottom: 20px;
  color: #333333;
}

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

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

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

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

.page-about__security-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: row-reverse; /* Image on right */
}

.page-about__security-image {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 600px; /* Example display width */
  height: 450px; /* Example display height */
  object-fit: cover;
}

.page-about__security-text {
  flex: 1;
  font-size: 1.1em;
}

.page-about__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 100px 20px;
}

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

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

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

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

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

.page-about__button--primary:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

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

.page-about__button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.page-about__button--link {
  background: none;
  color: #000000;
  border: 2px solid #000000;
  padding: 10px 20px;
  font-size: 1em;
}

.page-about__button--link:hover {
  background-color: #000000;
  color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__mission-content,
  .page-about__security-content {
    flex-direction: column;
    text-align: center;
  }

  .page-about__mission-image,
  .page-about__security-image {
    max-width: 100%;
    width: 600px; /* Maintain minimum size */
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2em;
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__section-title,
  .page-about__cta-title {
    font-size: 1.8em;
  }

  .page-about__hero-actions,
  .page-about__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-about__mission-image, .page-about__security-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }

  /* Ensure all images within .page-about are responsive and not too small */
  .page-about img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .page-about__hero-content {
    padding: 20px;
  }

  .page-about__hero-title {
    font-size: 1.6em;
  }

  .page-about__section-title,
  .page-about__cta-title {
    font-size: 1.5em;
  }

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

  .page-about__mission-section,
  .page-about__values-section,
  .page-about__security-section,
  .page-about__cta-section {
    padding: 60px 0;
  }
}