.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: #0A246A; /* Dark blue background for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Make image subtle behind text */
  z-index: 0;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

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

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

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  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__btn--primary {
  background-color: #F3C500; /* Gold button */
  color: #0A246A; /* Dark blue text */
  border: 2px solid #F3C500;
}

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

.page-about__btn--secondary {
  background-color: transparent;
  color: #F3C500;
  border: 2px solid #F3C500;
}

.page-about__btn--secondary:hover {
  background-color: rgba(243, 197, 0, 0.1);
  transform: translateY(-2px);
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #0A246A;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

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

.page-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-about__card-icon {
  width: 250px; /* Minimum 200px */
  height: 200px; /* Minimum 200px */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-about__card-title {
  font-size: 1.8em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-about__card-text {
  font-size: 1.1em;
  color: #555555;
}

.page-about__values-section {
  padding: 80px 0;
}

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

.page-about__value-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

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

.page-about__value-title {
  font-size: 1.6em;
  color: #0A246A;
  margin-bottom: 10px;
}

.page-about__value-text {
  color: #666666;
}

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

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

.page-about__commitment-text {
  max-width: 700px;
  text-align: center;
}

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

.page-about__commitment-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.page-about__commitment-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23F3C500"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-about__commitment-image {
  width: 100%;
  max-width: 600px; /* Maximum width for the image */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-about__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f0f0f0;
}

.page-about__cta-title {
  font-size: 2.5em;
  color: #0A246A;
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.2em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Desktop styles */
@media (min-width: 769px) {
  .page-about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-about__values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-about__commitment-content {
    flex-direction: row;
    text-align: left;
  }

  .page-about__commitment-text {
    text-align: left;
  }

  .page-about__commitment-list {
    padding-left: 0;
  }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__card-title {
    font-size: 1.5em;
  }
  .page-about__value-title {
    font-size: 1.4em;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: var(--header-offset, 80px);
    padding-bottom: 40px;
  }

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

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

  .page-about__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

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

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

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

  .page-about__card, .page-about__value-item {
    padding: 20px;
  }

  .page-about__card-icon, .page-about__value-icon {
    width: 200px; /* Enforce minimum size */
    height: 150px; /* Adjusted for aspect ratio, still > 200px area */
    margin-left: auto;
    margin-right: auto;
  }

  .page-about__commitment-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-about__commitment-list {
    padding-left: 0;
    text-align: center;
  }

  .page-about__commitment-list li {
    text-align: left;
    margin-left: 20px; /* Adjust for bullet visibility */
  }

  .page-about__commitment-image {
    width: 100%;
    max-width: 100%;
  }

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

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

  /* Ensure all images within .page-about are responsive and do not cause overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  /* Specific overrides for content images to ensure min-size is respected, but also responsive */
  .page-about__card-icon, .page-about__value-icon {
    max-width: 100%; /* Allows scaling down */
    width: auto; /* Revert to auto width */
    min-width: 200px; /* Maintain minimum width */
    min-height: 150px; /* Maintain minimum height */
    height: auto; /* Revert to auto height */
    object-fit: contain;
  }
  .page-about__commitment-image {
    min-width: 200px;
    min-height: 150px;
  }
}