.page-about {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  padding-top: 10px; /* Small top padding for the first section */
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

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

.page-about__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: none; /* No color filter */
}

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

.page-about__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #F3C54D;
  margin-bottom: 20px;
  max-width: 100%;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* Responsive font size for H1 */
}

.page-about__lead-paragraph {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF1E8;
}

.page-about__cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

.page-about__cta-button--secondary {
  background: #C61F1F;
  color: #FFF1E8;
}

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

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

.page-about__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  filter: none; /* No color filter */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

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

.page-about__value-card {
  background-color: #2A1212;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #6A1E1E;
}

.page-about__value-card img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
  filter: none; /* No color filter */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

.page-about__card-title {
  font-size: 1.3em;
  color: #FFB04A;
  margin-bottom: 10px;
}

.page-about__card-description {
  font-size: 0.95em;
  color: #FFF1E8;
}

.page-about__commitment-content {
  font-size: 1em;
  text-align: justify;
}

.page-about__commitment-content p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .page-about__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-about__lead-paragraph {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__hero-image-wrapper img,
  .page-about__image-content,
  .page-about__value-card img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-about__container {
    padding: 20px 10px;
  }
  .page-about__main-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }
  .page-about__lead-paragraph {
    font-size: 0.95em;
  }
  .page-about__text-block, .page-about__commitment-content p {
    text-align: left; /* Adjust for smaller screens */
  }
  .page-about__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}