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

.page-about__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 500px; /* Minimum height for hero section */
  overflow: hidden;
}

.page-about__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for the container */
  margin: 0 auto;
}

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

.page-about__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text contrast */
  color: #ffffff;
}

.page-about__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  max-width: 900px;
}

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

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

.page-about__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-about__hero-button--primary {
  background-color: #FFD700; /* Gold primary color */
  color: #8B0000; /* Dark red secondary color for text */
  border: 2px solid #FFD700;
}

.page-about__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-about__hero-button--secondary {
  background-color: #8B0000; /* Dark red secondary color */
  color: #FFD700; /* Gold primary color for text */
  border: 2px solid #8B0000;
}

.page-about__hero-button--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Dark red secondary color */
  text-align: center;
  margin: 60px 0 40px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold primary color */
  margin: 15px auto 0;
  border-radius: 2px;
}

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

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

.page-about__story-image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

.page-about__mission-vision-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #8B0000 0%, #a00000 100%); /* Dark red gradient */
  color: #ffffff;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-about__mission-card,
.page-about__vision-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 40px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-about__card-title {
  font-size: 2em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
}

.page-about__card-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #f0f0f0;
}

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

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

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

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

.page-about__value-icon {
  width: 200px; /* Enforce minimum size for content images */
  height: 150px; /* Enforce minimum size for content images */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-about__value-title {
  font-size: 1.5em;
  color: #8B0000; /* Dark red secondary color */
  margin-bottom: 15px;
}

.page-about__value-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-about__cta-section {
  background: linear-gradient(to right, #FFD700, #e6c200); /* Gold gradient */
  padding: 80px 0;
  text-align: center;
}

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

.page-about__cta-title {
  font-size: 2.8em;
  color: #8B0000; /* Dark red for contrast */
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-about__cta-description {
  font-size: 1.3em;
  color: #333333;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #8B0000; /* Dark red button */
  color: #FFD700; /* Gold text */
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #8B0000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button:hover {
  background-color: #6a0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__story-content {
    flex-direction: column;
    text-align: center;
  }
  .page-about__story-image {
    max-width: 80%;
  }
  .page-about__mission-card,
  .page-about__vision-card {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    min-height: 400px;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__hero-button {
    width: 80%;
    max-width: 300px;
  }
  .page-about__section-title {
    font-size: 2em;
    margin: 40px 0 30px;
  }
  .page-about__story-section, .page-about__mission-vision-section, .page-about__values-section, .page-about__cta-section {
    padding: 60px 0;
  }
  .page-about__story-image {
    max-width: 100%;
  }
  .page-about__value-icon {
    width: 200px; /* Ensure minimum size */
    height: 150px; /* Ensure minimum size */
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-description {
    font-size: 1.1em;
  }
  /* Ensure content images do not overflow on mobile */
  .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.8em;
  }
  .page-about__story-text, .page-about__card-text, .page-about__value-description {
    font-size: 0.95em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
}