.page-about {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
}

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

.page-about__hero-section {
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-about__hero-content {
  max-width: 800px;
  margin-bottom: 30px;
}

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

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

.page-about__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000; /* Dark text for light button */
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-about__hero-button:hover {
  background-color: #e0a53b;
}

.page-about__hero-image {
  width: 100%;
  max-width: 1000px; /* Constrain hero image width */
  margin-top: 40px;
}

.page-about__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #000000; /* Primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.page-about__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

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

.page-about__story-section,
.page-about__mission-values-section,
.page-about__offerings-section,
.page-about__why-choose-section,
.page-about__cta-section {
  padding: 60px 0;
}

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

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

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

.page-about__value-item {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-about__value-heading {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
}

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

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

.page-about__offering-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-about__offering-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-about__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-about__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 20px;
}

.page-about__card-button {
  display: inline-block;
  background-color: #000000; /* Primary color for card buttons */
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__card-button:hover {
  background-color: #333333;
}

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

.page-about__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__benefit-item {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-about__benefit-heading {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
}

.page-about__cta-section {
  background-color: #000000; /* Main brand color for CTA background */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-about__cta-section img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000; /* Dark text for light button */
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 60px 15px;
  }

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

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

  .page-about__hero-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-about__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }

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

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

  .page-about__values-list,
  .page-about__offerings-grid,
  .page-about__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__offering-card img {
    height: 200px;
  }

  .page-about__cta-section {
    padding: 60px 15px;
  }

  /* Mobile image handling - prevent overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }

  .page-about__hero-image img,
  .page-about__offering-card img,
  .page-about__cta-section img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content images are not too small */
  .page-about__offering-card img {
    min-width: 200px;
    min-height: 200px;
  }
}

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

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

  .page-about__hero-section {
    gap: 20px;
  }
}