.page-about {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-about__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, #17191F 0%, #0D0E12 100%);
  text-align: center;
  padding-bottom: 40px;
}

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

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

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

.page-about__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: #FF8C1A;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-about__tagline {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-about__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-about__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
}

.page-about__cta-button--small {
  padding: 12px 25px;
  font-size: 1rem;
}

.page-about__mission-section,
.page-about__values-section,
.page-about__commitment-section {
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid #A84F0C;
}

.page-about__commitment-section {
  border-bottom: none;
}

.page-about__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #FF8C1A;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFA53A;
  border-radius: 2px;
}

.page-about__text-content {
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

.page-about__image-content {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  filter: none; /* Ensure no CSS filter is applied */
}

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

.page-about__value-card {
  background-color: #17191F;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 176, 77, 0.2);
}

.page-about__card-title {
  font-size: 1.5rem;
  color: #FFA53A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card-description {
  font-size: 0.95rem;
  color: #FFF3E6;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-about__hero-image {
    aspect-ratio: 16 / 9; /* Adjust aspect ratio for smaller screens */
  }
}

@media (max-width: 768px) {
  .page-about__hero-section,
  .page-about__mission-section,
  .page-about__values-section,
  .page-about__commitment-section {
    padding: 40px 0;
  }

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

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

  .page-about__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

  .page-about__text-content {
    font-size: 0.95rem;
  }

  .page-about__image-content {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

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

  .page-about__value-card {
    text-align: center;
  }

  .page-about__value-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 549px) {
  .page-about__hero-content {
    padding: 0 15px;
  }

  .page-about__main-title {
    font-size: clamp(1.2rem, 7vw, 2rem);
  }

  .page-about__tagline {
    font-size: 0.9rem;
  }

  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

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

  .page-about__text-content {
    font-size: 0.9rem;
  }
}