.page-about__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-about__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-about__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 900px;
  padding: 0 20px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff; /* Explicitly set for contrast */
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-about__btn-primary:hover {
  background: #1e87b3;
  border-color: #1e87b3;
}

.page-about__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 20px;
}

.page-about__btn-secondary:hover {
  background: #e0e0e0;
}

.page-about__intro-section,
.page-about__values-section,
.page-about__social-responsibility-section,
.page-about__cta-section {
  padding: 80px 0;
}

.page-about__mission-vision-section,
.page-about__why-choose-section,
.page-about__team-section {
  padding: 80px 0;
  background: #26A9E0;
  color: #ffffff;
}

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

.page-about__section-title {
  font-size: 2.8em;
  margin-bottom: 40px;
  text-align: center;
  color: inherit;
  line-height: 1.3;
}

.page-about__intro-section .page-about__section-title,
.page-about__values-section .page-about__section-title,
.page-about__social-responsibility-section .page-about__section-title,
.page-about__cta-section .page-about__section-title {
  color: #000000; /* Dark text on light background */
}

.page-about__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: inherit;
}

.page-about__intro-section .page-about__text-block,
.page-about__values-section .page-about__text-block,
.page-about__social-responsibility-section .page-about__text-block,
.page-about__cta-section .page-about__text-block {
  color: #333333; /* Dark text on light background */
}

.page-about__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-about__container--reverse {
  flex-direction: row-reverse;
}

.page-about__content-column {
  flex: 1;
}

.page-about__image-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__image-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-about__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: inherit;
}

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

.page-about__value-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333; /* Dark text on light background */
}

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

.page-about__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-about__card-text {
  font-size: 1em;
  line-height: 1.7;
}

.page-about__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-about__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__list-item {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: inherit;
}

.page-about__why-choose-section .page-about__list-item {
  color: #ffffff; /* White text on dark background */
}

.page-about__list-item::before {
  content: '✔';
  color: #ffffff; /* Checkmark color */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-about__why-choose-section .page-about__list-item::before {
  color: #ffffff;
}

.page-about__link-text {
  color: #26A9E0;
  text-decoration: underline;
}

.page-about__link-text:hover {
  color: #1e87b3;
}

.page-about__team-section .page-about__btn-secondary {
  margin-top: 30px;
  margin-left: 0;
}

.page-about__cta-container {
  text-align: center;
}

.page-about__button-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Color Contrast Specifics */
.page-about__dark-section {
  background: #26A9E0;
  color: #ffffff;
}

.page-about__light-bg {
  background: #ffffff;
  color: #333333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2.2em;
  }
  .page-about__sub-title {
    font-size: 1.5em;
  }
  .page-about__container--flex {
    flex-direction: column;
  }
  .page-about__btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-about__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__sub-title {
    font-size: 1.3em;
  }
  .page-about__intro-section,
  .page-about__mission-vision-section,
  .page-about__values-section,
  .page-about__why-choose-section,
  .page-about__social-responsibility-section,
  .page-about__team-section,
  .page-about__cta-section {
    padding: 40px 0;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about p,
  .page-about li,
  .page-about__card-text {
    font-size: 16px;
    line-height: 1.6;
  }
  /* Responsive images */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__container,
  .page-about__hero-section,
  .page-about__intro-section,
  .page-about__mission-vision-section,
  .page-about__values-section,
  .page-about__why-choose-section,
  .page-about__social-responsibility-section,
  .page-about__team-section,
  .page-about__cta-section,
  .page-about__value-card,
  .page-about__button-group,
  .page-about__hero-content,
  .page-about__content-column,
  .page-about__image-column {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-about__button-group {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__list-item {
    padding-left: 25px;
  }
  .page-about__list-item::before {
    font-size: 1em;
  }
}