.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  background-color: #F4F7FB;
  color: #1F2D3D;
  text-align: center;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%; /* Ensure it doesn't overflow */
  margin-bottom: 20px;
}

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

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

.page-about__main-title {
  color: #1F2D3D;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  max-width: 100%;
}

.page-about__description {
  color: #1F2D3D;
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

.page-about__mission-section,
.page-about__vision-values-section,
.page-about__commitment-section,
.page-about__contact-cta-section {
  padding: 60px 20px;
  background-color: #F4F7FB;
  color: #1F2D3D;
  text-align: center;
}

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

.page-about__section-title {
  color: #1F2D3D;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-about__sub-title {
  color: #1F2D3D;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-about__text {
  color: #1F2D3D;
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-about__mission-image,
.page-about__values-image,
.page-about__contact-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Ensures images are not too wide */
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-about__grid-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.page-about__values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-about__values-item {
  color: #1F2D3D;
  margin-bottom: 10px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
  text-align: left;
}

.page-about__values-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9em;
}

.page-about__secondary-cta-button,
.page-about__contact-button {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

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

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-about__grid-item {
    margin-bottom: 0;
  }
  .page-about__content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  .page-about__values-item {
    text-align: center;
  }
  .page-about__values-item::before {
    left: auto;
    right: auto;
  }
}

@media (max-width: 768px) {
  .page-about__hero-content,
  .page-about__mission-section,
  .page-about__vision-values-section,
  .page-about__commitment-section,
  .page-about__contact-cta-section {
    padding: 40px 15px;
  }

  .page-about__main-title {
    font-weight: 700;
    line-height: 1.3;
  }

  .page-about__description {
    font-size: 1em;
  }

  .page-about__hero-image,
  .page-about__mission-image,
  .page-about__values-image,
  .page-about__contact-image {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
  }

  /* Ensure content images do not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}