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

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

.page-about__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  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: #FFD700;
  border-radius: 2px;
}

.page-about__hero-section {
  background-color: #1A202C;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

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

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

.page-about__btn {
  display: inline-block;
  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__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

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

.page-about__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-about__story-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-about__story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__story-text p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #444444;
}

.page-about__story-image-wrapper {
  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);
}

.page-about__mission-vision-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-about__mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-about__card {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-about__card:hover {
  transform: translateY(-5px);
}

.page-about__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__card p {
  font-size: 1.05em;
  color: #555555;
}

.page-about__values-section {
  padding: 80px 0;
  background-color: #1A202C;
  color: #ffffff;
}

.page-about__values-section .page-about__section-title {
  color: #FFD700;
}

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

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

.page-about__value-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-about__value-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__value-item p {
  font-size: 1em;
  color: #e0e0e0;
}

.page-about__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-about__commitment-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

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

.page-about__commitment-item:hover {
  transform: translateY(-5px);
}

.page-about__commitment-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-about__commitment-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-about__commitment-item p {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 30px;
}

.page-about__cta-section {
  background-color: #FFD700;
  color: #1A202C;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-about__cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.page-about__cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-about__cta-section .page-about__section-title {
  color: #1A202C;
}

.page-about__cta-section .page-about__section-title::after {
  background-color: #1A202C;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-about__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-about__cta-buttons .page-about__btn--primary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #1A202C;
}

.page-about__cta-buttons .page-about__btn--primary:hover {
  background-color: #333d4a;
  border-color: #333d4a;
}

.page-about__cta-buttons .page-about__btn--secondary {
  background-color: transparent;
  color: #1A202C;
  border: 2px solid #1A202C;
}

.page-about__cta-buttons .page-about__btn--secondary:hover {
  background-color: #1A202C;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__story-grid {
    grid-template-columns: 1fr;
  }
  .page-about__mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .page-about__commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__card-title, .page-about__value-title, .page-about__commitment-title {
    font-size: 1.5em;
  }
  .page-about__story-section, .page-about__mission-vision-section, .page-about__values-section, .page-about__commitment-section, .page-about__cta-section {
    padding: 60px 0;
  }
  /* Ensure images do not overflow on mobile */
  .page-about__hero-image, .page-about__story-image, .page-about__commitment-image, .page-about__cta-image {
    max-width: 100%;
    height: auto;
  }
  .page-about__story-text, .page-about__card p, .page-about__value-item p, .page-about__commitment-item p, .page-about__cta-description {
    font-size: 0.95em;
  }
  .page-about__hero-section, .page-about__cta-section {
    padding: 60px 20px;
  }
  .page-about__content-container {
    padding: 0 15px;
  }
  .page-about__commitment-grid {
    grid-template-columns: 1fr;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__card-title, .page-about__value-title, .page-about__commitment-title {
    font-size: 1.3em;
  }
}