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

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

.page-about__hero-section {
  background-color: #000000; /* Deep black for hero background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

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

.page-about__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-about__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  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;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-about__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #000000;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-about__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

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

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
  filter: brightness(0.6); /* Darken image for better text contrast */
}

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 10px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DC143C; /* Red underline */
  border-radius: 2px;
}

.page-about__story-section, .page-about__mission-section, .page-about__cta-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background for sections */
  margin-bottom: 20px;
}

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

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

.page-about__story-text {
  flex: 1;
  font-size: 1.1em;
  color: #e0e0e0;
}

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

.page-about__story-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-about__story-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-about__mission-item {
  background-color: #000000; /* Black card background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-about__mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.3);
}

.page-about__mission-icon {
  width: 250px; /* Enforce min 200px, but visually larger */
  height: 187px; /* Maintain aspect ratio for 400x300 */
  margin-bottom: 25px;
  object-fit: cover;
  border-radius: 8px;
}

.page-about__mission-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for mission titles */
  margin-bottom: 15px;
}

.page-about__mission-item p {
  color: #cccccc;
  font-size: 0.95em;
}

.page-about__cta-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 5px solid #DC143C;
}

.page-about__cta-content {
  z-index: 1;
  position: relative;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-about__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-about__button--cta {
  font-size: 1.3em;
  padding: 18px 35px;
  margin-right: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__story-content {
    flex-direction: column;
  }
  .page-about__story-image-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 60px 15px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__story-section, .page-about__mission-section, .page-about__cta-section {
    padding: 60px 0;
  }
  .page-about__mission-grid {
    grid-template-columns: 1fr;
  }
  .page-about__mission-icon {
    width: 200px; /* Smallest allowed size */
    height: 150px; /* Maintain aspect ratio for 400x300 */
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__button--cta {
    width: 90%;
    margin-bottom: 15px; /* Add margin for vertical stacking */
  }
  .page-about__button--secondary {
    width: 90%;
    margin: 0 auto;
  }
  /* Ensure all images within .page-about are responsive */
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-about__mission-icon {
    width: 200px; /* Smallest allowed size */
    height: 150px; /* Maintain aspect ratio for 400x300 */
  }
}

/* Ensure all content area images are at least 200px wide */
.page-about__story-image,
.page-about__mission-icon {
  min-width: 200px;
  min-height: 150px; /* Adjust height to maintain aspect ratio */
}