.page-about {
  color: #333333; /* Default text color for light background */
  line-height: 1.6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #0A192F; /* Primary dark background */
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
}

.page-about__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

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

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

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

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

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-about__button--primary {
  background-color: #FFD700; /* Accent gold */
  color: #0A192F; /* Primary dark text */
  border: 2px solid #FFD700;
}

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

.page-about__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Accent gold */
  border: 2px solid #FFD700;
}

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

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

.page-about__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-about__story-section, 
.page-about__mission-vision-section, 
.page-about__values-section, 
.page-about__why-choose-section, 
.page-about__cta-section {
  padding: 60px 0;
  background-color: #f8f8f8; /* Light background for content sections */
  border-bottom: 1px solid #eee;
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #0A192F; /* Primary dark text */
  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__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

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

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

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

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

.page-about__card-description {
  font-size: 1em;
  color: #555555;
}

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

.page-about__value-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-about__value-title {
  font-size: 1.6em;
  color: #0A192F;
  margin-bottom: 10px;
}

.page-about__value-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-about__value-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-about__value-description a:hover {
  text-decoration: underline;
}

.page-about__value-image {
  margin-top: 20px;
  border-radius: 8px;
  width: 100%; /* Ensure image fills card width */
  height: auto;
  max-width: 400px; /* Max width for smaller images in cards */
  min-width: 200px; /* Min width for images in content area */
  min-height: 200px;
  object-fit: cover;
}

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

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

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

.page-about__feature-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 10px;
}

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

.page-about__feature-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-about__feature-description a:hover {
  text-decoration: underline;
}

.page-about__cta-section {
  background-color: #0A192F; /* Primary dark background */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-about__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-about__cta-title {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.2em;
  max-width: 800px;
}

.page-about__cta-button {
  margin-top: 30px;
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

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

.page-about__cta-image {
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: auto;
  max-width: 800px; /* Limit image width */
  min-width: 200px; /* Min width for images in content area */
  min-height: 200px;
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: var(--header-offset, 120px);
    padding: 40px 20px;
  }
  .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__button {
    width: 100%;
    max-width: 300px; /* Constrain button width on mobile */
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__paragraph {
    font-size: 0.95em;
  }
  .page-about__mission-vision-grid,
  .page-about__values-grid,
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__card, .page-about__value-item, .page-about__feature-card {
    padding: 25px;
  }
  .page-about__card-title, .page-about__value-title, .page-about__feature-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }

  /* Mobile content area image constraint */
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Ensure content images are not too small */
    min-height: 200px !important;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__section-title {
    font-size: 1.6em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__button {
    min-width: unset;
  }
}