.page-about {
  padding-top: 10px; /* Small top padding for the first section, relying on body's padding for header offset */
  background-color: #FFFFFF; /* Default background */
  color: #333333; /* Default text color */
}

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

.page-about__hero-section {
  text-align: center;
  padding: 20px 0 40px;
  background-color: #F8F8F8;
}

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

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 5; /* Adjusted for 1920x600, common for banners */
  object-fit: cover;
  object-position: center;
}

.page-about__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Darker title for contrast */
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive font size */
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1rem;
}

.page-about__cta-button--primary {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-about__cta-button--primary:hover {
  background-color: #1a8cc4;
}

.page-about__cta-button--secondary {
  background-color: #EA7C07;
  color: #FFFFFF;
}

.page-about__cta-button--secondary:hover {
  background-color: #c76706;
}

.page-about__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem); /* Responsive font size */
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
  padding-top: 40px;
}

.page-about__mission-section,
.page-about__why-choose-us-section,
.page-about__our-values-section,
.page-about__contact-section {
  padding: 60px 0;
}

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

.page-about__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.page-about__content-wrapper--reverse {
  flex-direction: row-reverse;
}

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

.page-about__text-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444444;
}

.page-about__image-content {
  flex: 1;
  text-align: center;
}

.page-about__image-content--center {
  margin-top: 40px;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min size for content images */
  min-height: 200px;
  filter: none; /* Ensure no filters are applied */
}

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

.page-about__feature-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-about__feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-about__feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
}

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

.page-about__values-list li {
  background-color: #f0f8ff; /* Lighter background for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #26A9E0;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
}

.page-about__values-list li strong {
  color: #000000;
}

.page-about__contact-section {
  text-align: center;
  background-color: #f8f8f8;
  padding-bottom: 80px;
}

.page-about__contact-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-about__description {
    font-size: 1rem;
  }
  .page-about__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-about__content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .page-about__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  /* Ensure content area images are responsive and not too small */
  .page-about__image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-about__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .page-about__feature-card {
    padding: 20px;
  }
  .page-about__feature-title {
    font-size: 1.2rem;
  }
  .page-about__feature-description {
    font-size: 0.9rem;
  }
  .page-about__values-list li {
    padding: 12px 15px;
  }
}