.page-about {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--header-offset, 120px) 20px 60px; /* Ensure space for fixed header */
  background-color: #f4f7f6;
  overflow: hidden;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-about__main-title {
  font-size: 3.5em;
  color: #007bff;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-about__intro-description {
  font-size: 1.3em;
  color: #555555;
  margin-bottom: 30px;
}

.page-about__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__hero-button--primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-about__hero-button--primary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.page-about__hero-button--secondary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-about__hero-button--secondary:hover {
  background-color: #007bff;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle overlay */
}

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

.page-about__mission-section,
.page-about__values-section,
.page-about__commitment-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

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

.page-about__mission-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-about__section-title {
  font-size: 2.8em;
  color: #007bff;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-about__text-block {
  font-size: 1.1em;
  color: #444444;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-about__mission-button,
.page-about__commitment-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 25px;
  background-color: #28a745;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__mission-button:hover,
.page-about__commitment-button:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

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

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

.page-about__value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-about__value-icon {
  width: 100%; /* Ensure images are not small icons */
  height: auto;
  max-width: 400px;
  margin-bottom: 25px;
  border-radius: 8px;
}

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

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

.page-about__cta-section {
  background: linear-gradient(135deg, #007bff, #28a745);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about__cta-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-about__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0 15px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button--primary {
  background-color: #ffffff;
  color: #007bff;
  border: 2px solid #ffffff;
}

.page-about__cta-button--primary:hover {
  background-color: #e6e6e6;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-about__cta-button--secondary:hover {
  background-color: #ffffff;
  color: #28a745;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-about__cta-image-wrapper {
  max-width: 600px;
  margin-top: 40px;
}

.page-about__cta-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__main-title {
    font-size: 2.8em;
  }

  .page-about__intro-description {
    font-size: 1.1em;
  }

  .page-about__section-title {
    font-size: 2.2em;
  }

  .page-about__mission-section .page-about__container {
    flex-direction: column;
  }

  .page-about__mission-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__main-title {
    font-size: 2.2em;
  }

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

  .page-about__hero-button {
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .page-about__hero-button + .page-about__hero-button {
    margin-top: 10px;
    margin-left: 0;
  }

  .page-about__hero-content {
    margin-bottom: 20px;
  }

  .page-about__hero-image-wrapper {
    position: relative;
    height: auto;
    width: 100%;
  }

  .page-about__hero-image {
    position: static;
    width: 100%;
    height: auto;
  }

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

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-about__text-block {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

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

  .page-about__cta-title {
    font-size: 2.2em;
  }

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

  .page-about__cta-button {
    padding: 15px 25px;
    font-size: 1.1em;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .page-about__cta-button + .page-about__cta-button {
    margin-top: 10px;
    margin-left: 0;
  }
  
  .page-about__cta-content {
    margin-bottom: 20px;
  }

  .page-about__cta-image {
    max-width: 100%;
    height: auto;
  }

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

  /* Specific overrides to ensure content images are not shrunk below 200px */
  .page-about__value-icon,
  .page-about__mission-image,
  .page-about__cta-image {
    width: 100%; /* Override any smaller specific widths */
    height: auto;
    min-width: 200px; 
    min-height: 200px;
  }
}