.page-about {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for the first section */
}

.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 60px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

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

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-about__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-about__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-about__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-about__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-about__mission-vision-section,
.page-about__values-section,
.page-about__call-to-action-section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-about__section-heading {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-about__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-about__text-block {
  flex: 1;
}

.page-about__sub-heading {
  font-size: 1.8em;
  color: #2F6BFF;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-about__image-block {
  flex: 1;
}

.page-about__values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}

.page-about__value-item {
  background-color: #F4F7FB;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-about__value-title {
  font-size: 1.5em;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__values-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-about__image-wrapper {
  max-width: 800px;
  margin: 40px auto 0;
}

.page-about__call-to-action-section {
  background-color: #2F6BFF;
  color: #FFFFFF;
  padding: 80px 20px;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 1000px;
}

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

.page-about__cta-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button--large {
  padding: 16px 35px;
  font-size: 1.1em;
  margin-right: 15px;
}

.page-about__secondary-cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  background-color: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1em;
}

.page-about__secondary-cta-button:hover {
  background-color: #FFFFFF;
  color: #2F6BFF;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .page-about__content-grid {
    flex-direction: column;
  }
  .page-about__image-block {
    order: -1; /* Image appears above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-about__main-title {
    font-size: 1.8em;
  }
  .page-about__section-heading {
    font-size: 2em;
  }
  .page-about__sub-heading {
    font-size: 1.5em;
  }
  .page-about__cta-heading {
    font-size: 1.8em;
  }
  .page-about__cta-button,
  .page-about__secondary-cta-button {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-about__cta-button--large {
    margin-right: 0;
  }
  .page-about__content-image, .page-about__values-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-section,
  .page-about__mission-vision-section,
  .page-about__values-section,
  .page-about__call-to-action-section {
    padding: 30px 15px;
  }
  .page-about__main-title {
    font-size: 1.5em;
  }
  .page-about__section-heading {
    font-size: 1.7em;
  }
  .page-about__sub-heading {
    font-size: 1.3em;
  }
  .page-about__value-item {
    padding: 20px;
  }
  .page-about__cta-heading {
    font-size: 1.5em;
  }
}