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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #2C3E50; /* Dark background for hero */
  color: #ffffff;
  overflow: hidden;
}

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

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

.page-about__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #2C3E50;
  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;
  border: none;
  cursor: pointer;
}

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

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

.page-about__section-title {
  font-size: 2.8em;
  color: #2C3E50;
  text-align: center;
  margin-bottom: 60px;
  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__story-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-about__story-text {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.7;
  color: #555555;
}

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

.page-about__story-image {
  flex: 1;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

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

.page-about__mv-card {
  background-color: #2C3E50;
  color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

.page-about__mv-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-about__mv-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

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

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

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

.page-about__value-title {
  font-size: 1.5em;
  color: #2C3E50;
  margin-bottom: 15px;
}

.page-about__value-item p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
}

.page-about__values-banner-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-about__cta-section {
  padding: 100px 0;
  background-color: #2C3E50;
  color: #ffffff;
  text-align: center;
}

.page-about__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-about__cta-heading {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-about__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.page-about__cta-button--primary {
  background-color: #FFD700;
  color: #2C3E50;
}

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

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

.page-about__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #2C3E50;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__section-title {
    font-size: 2.2em;
  }
  .page-about__story-grid {
    flex-direction: column;
  }
  .page-about__story-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-about__story-section, .page-about__mission-vision-section, .page-about__values-section, .page-about__cta-section {
    padding: 60px 0;
  }
  .page-about__story-text, .page-about__mv-card p, .page-about__value-item p {
    font-size: 0.95em;
  }
  .page-about__mv-grid, .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__hero-image img, .page-about__story-image, .page-about__mv-icon, .page-about__values-banner-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
  .page-about__cta-heading {
    font-size: 2em;
  }
  .page-about__cta-text {
    font-size: 1em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Ensure all content area images are responsive and do not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.6em;
  }
  .page-about__hero-section {
    padding: 60px 15px;
  }
  .page-about__container {
    padding: 0 15px;
  }
}