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

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

.page-about__section-title {
  font-size: 2.5em;
  color: #0A1931;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__section-title--light {
  color: #E0B700;
}

.page-about__paragraph {
  font-size: 1em;
  margin-bottom: 1em;
}

.page-about__read-more-link {
  color: #0A1931;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__read-more-link:hover {
  color: #E0B700;
}

.page-about__read-more-link--light {
  color: #E0B700;
}

.page-about__read-more-link--light:hover {
  color: #ffffff;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A1931;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
  filter: brightness(0.8); /* Slightly darken image for text readability */
}

.page-about__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

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

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

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

.page-about__hero-button {
  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, color 0.3s ease;
}

.page-about__hero-button--primary {
  background-color: #E0B700;
  color: #0A1931;
}

.page-about__hero-button--primary:hover {
  background-color: #ffc800;
  color: #000000;
}

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

.page-about__hero-button--secondary:hover {
  background-color: #E0B700;
  color: #0A1931;
}

/* Story Section */
.page-about__story-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-about__story-image-wrapper {
  text-align: center;
}

.page-about__story-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Mission & Values Section */
.page-about__mission-values-section {
  padding: 80px 0;
  background-color: #0A1931;
  color: #ffffff;
}

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

.page-about__mv-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-about__mv-card-title {
  font-size: 1.8em;
  color: #E0B700;
  margin-bottom: 15px;
}

/* Why Choose Us Section */
.page-about__why-choose-us-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-about__choose-item {
  text-align: center;
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__choose-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.page-about__choose-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-about__choose-title {
  font-size: 1.5em;
  color: #0A1931;
  margin-bottom: 15px;
}

/* Call to Action Section */
.page-about__cta-section {
  padding: 60px 0;
  background-color: #E0B700;
  text-align: center;
  color: #0A1931;
}

.page-about__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-about__cta-button {
  display: inline-block;
  background-color: #0A1931;
  color: #E0B700;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__cta-button:hover {
  background-color: #1a2a47;
  color: #ffc800;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__story-grid {
    grid-template-columns: 1fr;
  }
  .page-about__story-image-wrapper {
    order: -1;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__hero-button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-about__story-section, .page-about__mission-values-section, .page-about__why-choose-us-section, .page-about__cta-section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__mv-card, .page-about__choose-item {
    padding: 20px;
  }
  .page-about__mv-card-title {
    font-size: 1.5em;
  }
  .page-about__choose-title {
    font-size: 1.3em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__hero-image, .page-about__story-image, .page-about__choose-icon {
    max-width: 100%;
    height: auto;
  }
  .page-about__hero-section img, .page-about__story-section img, .page-about__why-choose-us-section img {
    max-width: 100%;
    height: auto;
  }
  .page-about__hero-section .page-about__hero-image {
    filter: brightness(0.6);
  }
  /* Ensure all content area images are responsive and not too small */
  .page-about img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
  }
}

@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;
  }
}