.page-about {
  background-color: #F4F7FB; /* var(--page-bg) */
  color: #1F2D3D; /* var(--text-main) */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding as per rules, body handles --header-offset */
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column; /* Enforce image on top, content below */
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background-color: #2F6BFF; /* var(--main-color) */
  color: #FFFFFF; /* White text on blue background */
  position: relative;
  overflow: hidden;
  border-radius: 0 0 15px 15px;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 20px; /* Space between image and content */
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-about__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-about__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin-bottom: 15px;
  /* No fixed font-size, rely on natural flow and clamp if needed */
}

.page-about__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-about__hero-button,
.page-about__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* var(--button-gradient) */
  color: #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-about__hero-button:hover,
.page-about__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-about__section {
  padding: 60px 0;
}

.page-about__mission-section {
  background-color: #FFFFFF; /* var(--card-bg) */
  border-radius: 15px;
  margin-top: -30px; /* Overlap with hero slightly for visual flow */
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-about__heading {
  font-size: 2.5em;
  color: #000000; /* var(--custom-color-1776249996415) */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__paragraph {
  font-size: 1.05em;
  color: #1F2D3D; /* var(--text-main) */
  text-align: justify;
  margin-bottom: 20px;
}

.page-about__image-text-group {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-about__content-image {
  flex: 1;
  min-width: 300px; /* Ensure images are not too small */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-about__image-text-group .page-about__paragraph {
  flex: 2;
  margin-bottom: 0;
}

.page-about__values-section {
  background-color: #F4F7FB; /* var(--page-bg) */
}

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

.page-about__value-card {
  background-color: #FFFFFF; /* var(--card-bg) */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #D6E2FF; /* var(--border-color) */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__value-title {
  font-size: 1.5em;
  color: #000000; /* var(--custom-color-1776249996415) */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__value-text {
  font-size: 1em;
  color: #1F2D3D; /* var(--text-main) */
}

.page-about__cta-section {
  background-color: #2F6BFF; /* var(--main-color) */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.4);
}

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

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

.page-about__cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__container {
    padding: 15px;
  }

  .page-about__hero-section {
    padding-bottom: 30px;
  }

  .page-about__hero-title {
    font-size: clamp(2em, 5vw, 2.8em); /* Use clamp for H1 */
  }

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

  .page-about__heading {
    font-size: 2em;
  }

  .page-about__image-text-group {
    flex-direction: column;
  }

  .page-about__content-image {
    width: 100%;
    max-width: 100%; /* Ensure images don't overflow */
    height: auto;
  }

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

  .page-about__cta-section {
    padding: 60px 0;
    margin: 30px auto;
  }

  .page-about__cta-heading {
    font-size: clamp(2.2em, 6vw, 2.5em); /* Use clamp for CTA H2 */
  }

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

  /* Mobile image overflow prevention */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-about__heading {
    font-size: 1.8em;
  }

  .page-about__value-title {
    font-size: 1.3em;
  }

  .page-about__cta-heading {
    font-size: clamp(2em, 7vw, 2.2em);
  }

  .page-about__hero-button,
.page-about__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}