.page-about {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  background-color: #007bff; /* Primary color background for hero */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-about__button--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #007bff; /* Primary color */
  border: 2px solid #ffc107;
}

.page-about__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-about__button--secondary {
  background-color: transparent;
  color: #ffc107; /* Auxiliary color */
  border: 2px solid #ffc107;
}

.page-about__button--secondary:hover {
  background-color: rgba(255, 193, 7, 0.1);
  transform: translateY(-3px);
}

.page-about__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle overlay */
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color */
  text-align: center;
  margin-bottom: 30px;
  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: #ffc107; /* Auxiliary color */
  border-radius: 2px;
}

.page-about__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-about__story-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-about__story-image {
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-about__values-section {
  padding: 60px 0;
}

.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: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.page-about__value-title {
  font-size: 1.8em;
  color: #007bff; /* Primary color */
  margin-bottom: 15px;
}

.page-about__value-description {
  color: #666666;
  font-size: 1em;
}

.page-about__why-choose-section {
  background-color: #eaf4ff; /* Light primary background */
  padding: 60px 0;
}

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

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

.page-about__feature-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-about__feature-title {
  font-size: 1.6em;
  color: #007bff; /* Primary color */
  margin-bottom: 10px;
}

.page-about__feature-description {
  color: #666666;
  font-size: 1em;
}

.page-about__cta-bottom {
  text-align: center;
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-about__contact-cta-section {
  padding: 60px 0;
  background-color: #0056b3; /* Darker primary color */
  color: #ffffff;
  text-align: center;
}

.page-about__contact-cta-section .page-about__section-title {
  color: #ffc107; /* Auxiliary color */
}

.page-about__contact-cta-section .page-about__section-text {
  color: #f0f0f0;
}

.page-about__contact-cta-section .page-about__section-title::after {
  background-color: #ffc107;
}

.page-about__contact-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-about__contact-actions .page-about__button--primary {
  background-color: #ffc107;
  color: #007bff;
  border-color: #ffc107;
}

.page-about__contact-actions .page-about__button--primary:hover {
  background-color: #e0a800;
}

.page-about__contact-actions .page-about__button--secondary {
  background-color: transparent;
  color: #ffc107;
  border-color: #ffc107;
}

.page-about__contact-actions .page-about__button--secondary:hover {
  background-color: rgba(255, 193, 7, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }

  .page-about__hero-description {
    font-size: 1.2em;
  }

  .page-about__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: var(--header-offset, 80px);
    padding-bottom: 60px;
  }

  .page-about__hero-title {
    font-size: 2.5em;
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__container {
    padding: 30px 15px;
  }

  .page-about__section-title {
    font-size: 1.8em;
  }

  .page-about__section-text {
    font-size: 0.95em;
  }

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

  .page-about__story-image, .page-about__feature-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-about__cta-bottom, .page-about__contact-actions {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure all images within .page-about are responsive and do not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }

  /* Explicitly setting min-width for all content images to adhere to 200px rule */
  .page-about__story-image, 
  .page-about__feature-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }

  .page-about__section-title {
    font-size: 1.5em;
  }

  .page-about__button {
    width: 100%;
  }
}