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

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

.page-about__hero-section {
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Gold to Dark Red gradient */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

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

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-about__hero-image-wrapper {
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-about__story-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-about__story-title,
.page-about__values-title,
.page-about__why-choose-us-title,
.page-about__cta-title {
  font-size: 2.5em;
  color: #8B0000; /* Dark red headings */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-about__story-content p {
  font-size: 1.1em;
  max-width: 800px;
  text-align: center;
}

.page-about__story-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

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

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

.page-about__value-card {
  background-color: #fffaf0; /* Light gold background */
  border: 1px solid #FFD700;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-about__value-icon {
  width: 100%;
  max-width: 150px; /* Max width for icons */
  height: auto;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure minimum size for content images */
  min-height: 200px; /* Ensure minimum size for content images */
}

.page-about__value-heading {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-about__value-card p {
  font-size: 1em;
  color: #555555;
}

.page-about__why-choose-us-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-about__feature-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-about__feature-heading {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
}

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

.page-about__why-choose-us-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #8B0000; /* Dark red button */
  color: #FFD700; /* Gold text */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__why-choose-us-button:hover {
  background-color: #6a0000;
  transform: translateY(-3px);
}

.page-about__cta-section {
  background: #8B0000; /* Dark red background */
  color: #ffffff;
  padding: 70px 20px;
  text-align: center;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold title */
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-about__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px auto;
  opacity: 0.9;
}

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

.page-about__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-4px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__story-title,
  .page-about__values-title,
  .page-about__why-choose-us-title,
  .page-about__cta-title {
    font-size: 2em;
  }
}

@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: 1.1em;
  }
  .page-about__hero-image,
  .page-about__story-image,
  .page-about__value-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }
  .page-about__story-title,
  .page-about__values-title,
  .page-about__why-choose-us-title,
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__values-grid,
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__why-choose-us-button,
  .page-about__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-about__hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-about__container {
    padding: 0 15px;
  }
  /* Mobile content area image constraint */
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
  }
}