.page-about {
  padding-top: 10px; /* Small top padding for the first section */
  background-color: var(--bg-background);
  color: var(--text-main);
  font-family: Arial, sans-serif;
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: var(--bg-background);
  position: relative;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
  object-fit: cover;
}

.page-about__hero-content {
  max-width: 800px;
  margin-top: 20px;
}

.page-about__main-title {
  color: var(--text-custom-color-1776249996415);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  /* Using clamp for responsive font size, but not overly large fixed value */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-about__hero-description {
  color: var(--text-main);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px var(--color-glow);
  border: none;
  cursor: pointer;
  min-width: 200px;
}

.page-about__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--color-glow);
}

.page-about__mission-section,
.page-about__values-section,
.page-about__commitment-section {
  padding: 60px 20px;
  text-align: center;
}

.page-about__mission-section {
  background-color: var(--bg-card-bg);
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 2px 10px var(--color-border);
}

.page-about__section-title {
  color: var(--text-custom-color-1776249996415);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.page-about__paragraph {
  color: var(--text-main);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.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: var(--bg-card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px var(--color-border);
  transition: transform 0.3s ease;
  min-height: 350px; /* Ensure cards have enough height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
}

.page-about__value-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-about__value-title {
  color: var(--text-custom-color-1776249996415);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-about__value-description {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.6;
}

.page-about__commitment-section {
  background-color: var(--bg-background);
}

.page-about__commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__commitment-item {
  background-color: var(--bg-card-bg);
  border-left: 5px solid var(--color-primary);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 5px var(--color-border);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-main);
}

.page-about__commitment-item strong {
  color: var(--text-custom-color-1776249996415);
}

.page-about__cta-button--bottom {
  margin-top: 50px;
}

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

  .page-about__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

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

  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    min-width: unset;
    width: 100%;
    max-width: 250px;
  }

  .page-about__section-title {
    font-size: 2rem;
  }

  .page-about__paragraph {
    font-size: 1rem;
  }

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

  .page-about__value-card {
    min-height: unset;
  }

  .page-about__value-icon {
    width: 150px;
    height: 100px;
  }

  .page-about__commitment-item {
    font-size: 1rem;
    padding: 15px;
  }

  /* Ensure content images do not overflow on mobile */
  .page-about__hero-image,
  .page-about__value-icon {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__section-title {
    font-size: 1.8rem;
  }
}

/* Color contrast checks (example for text-main on bg-card-bg) */
.page-about__paragraph,
.page-about__hero-description,
.page-about__value-description,
.page-about__commitment-item {
  /* Ensure sufficient contrast with background */
  color: #1F2D3D; /* Text Main */
  /* Backgrounds are #FFFFFF (Card BG) or #F4F7FB (Background) */
  /* Contrast check: #1F2D3D on #FFFFFF is 13.92:1 (AA pass) */
  /* Contrast check: #1F2D3D on #F4F7FB is 10.74:1 (AA pass) */
}

.page-about__main-title,
.page-about__section-title,
.page-about__value-title,
.page-about__commitment-item strong {
  color: #000000; /* Custom Color 1776249996415 */
  /* Backgrounds are #FFFFFF (Card BG) or #F4F7FB (Background) */
  /* Contrast check: #000000 on #FFFFFF is 21:1 (AA pass) */
  /* Contrast check: #000000 on #F4F7FB is 19.14:1 (AA pass) */
}

.page-about__cta-button {
  /* Button text color #FFFFFF on gradient background */
  /* Gradient starts at #4A8BFF, ends at #2F6BFF */
  /* Contrast check: #FFFFFF on #4A8BFF is 3.59:1 (fail AA) - needs adjustment or is considered decorative if not primary info */
  /* For buttons, usually the overall visual prominence is key, but technically, this may fail strict AA. */
  /* Assuming the gradient average provides better contrast visually */
  /* As per prompt, button color is fixed, so I must use it. */
}