.page-about {
  color: #333333; /* Dark text for light body background */
}

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

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #FFD70044, #1E90FF44);
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
  margin: 0 auto;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about__hero-title {
  font-size: 3.5em;
  color: #1E90FF; /* Royal Blue for main title */
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.3em;
  color: #333333;
  max-width: 800px;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.page-about__button--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #1E90FF; /* Royal Blue text */
  border: 2px solid #FFD700;
}

.page-about__button--primary:hover {
  background-color: #e6c200;
  color: #1565b3;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-about__button--secondary {
  background-color: #1E90FF; /* Royal Blue secondary button */
  color: #FFD700; /* Gold text */
  border: 2px solid #1E90FF;
}

.page-about__button--secondary:hover {
  background-color: #1565b3;
  color: #e6c200;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-about__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Royal Blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: 700;
}

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

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

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

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

.page-about__mv-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-about__mv-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-about__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-about__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-about__feature-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-about__cta-section {
  background: linear-gradient(45deg, #1E90FF, #FFD700);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-about__cta-container {
  max-width: 900px;
}

.page-about__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

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

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

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: var(--header-offset, 120px);
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
  }
  .page-about__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-about__mv-grid {
    grid-template-columns: 1fr;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__card-title {
    font-size: 1.5em;
  }
  .page-about__text {
    font-size: 1em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 1.6em;
  }
  .page-about__cta-description {
    font-size: 0.9em;
  }
  .page-about__story-section, .page-about__mission-vision-section, .page-about__why-choose-us-section, .page-about__cta-section {
    padding: 40px 0;
  }
  .page-about__container {
    padding: 0 15px;
  }
}