.page-about {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

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

.page-about__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for text readability */
  border-radius: 10px;
  color: #ffffff;
}

.page-about__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #000000; /* Black text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__story-section,
.page-about__values-section,
.page-about__why-choose-us-section,
.page-about__cta-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-about__story-section {
  background-color: #f9f9f9;
}

.page-about__story-title,
.page-about__values-title,
.page-about__why-choose-us-title,
.page-about__cta-title {
  font-size: 2.8em;
  color: #000000; /* Black secondary color */
  text-align: center;
  margin-bottom: 50px;
}

.page-about__story-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__story-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-about__story-text {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-about__story-text p {
  margin-bottom: 20px;
}

.page-about__story-button {
  display: inline-block;
  background-color: #000000; /* Black secondary color */
  color: #FFD700; /* Gold primary color */\  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-about__story-button:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.page-about__story-image-wrapper {
  flex: 1;
  text-align: center;
}

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

.page-about__values-section {
  background-color: #ffffff;
}

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

.page-about__value-card {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-about__value-icon {
  width: 100%; /* Ensure images are not small icons */
  height: auto;
  max-width: 250px; /* Adjust max-width to ensure it's not smaller than 200px */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-about__value-heading {
  font-size: 1.8em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 15px;
}

.page-about__value-description {
  font-size: 1em;
  line-height: 1.7;
}

.page-about__why-choose-us-section {
  background-color: #f9f9f9;
}

.page-about__why-choose-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-about__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-about__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency, object-fit covers */
  object-fit: cover;
  display: block;
}

.page-about__feature-card h3 {
  font-size: 1.5em;
  color: #000000; /* Black secondary color */
  padding: 20px 25px 10px;
}

.page-about__feature-card p {
  font-size: 1em;
  line-height: 1.7;
  padding: 0 25px 25px;
}

.page-about__cta-section {
  background-color: #000000; /* Black auxiliary color */
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.page-about__cta-title {
  font-size: 3em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #000000; /* Black text for contrast */
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__story-content {
    flex-direction: column;
  }
  .page-about__story-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: var(--header-offset, 120px);
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-content {
    padding: 20px;
  }
  .page-about__story-title,
  .page-about__values-title,
  .page-about__why-choose-us-title,
  .page-about__cta-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-about__story-section,
  .page-about__values-section,
  .page-about__why-choose-us-section,
  .page-about__cta-section {
    padding: 60px 15px;
  }
  .page-about__values-grid,
  .page-about__why-choose-us-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2.5em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__hero-image,
  .page-about__story-image,
  .page-about__value-icon,
  .page-about__feature-image {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all images within .page-about are responsive and do not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  .page-about__feature-image {
    height: 200px; /* Adjust fixed height for mobile */
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-about__story-title,
  .page-about__values-title,
  .page-about__why-choose-us-title,
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-about__value-heading {
    font-size: 1.5em;
  }
  .page-about__feature-card h3 {
    font-size: 1.3em;
  }
}