.page-about {
  color: #333333; /* Default text color for 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__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #0d0d0d; /* Dark background for hero to contrast with gold/red theme */
  color: #ffffff;
  padding-bottom: 40px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1920px; /* Max width for the image */
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  opacity: 0.3; /* Subtle background effect */
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 80px 20px;
}

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

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #8B0000; /* Deep Red for CTA */
  color: #ffffff;
  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;
  border: 2px solid #8B0000;
}

.page-about__hero-button:hover {
  background-color: #FFD700; /* Gold on hover */
  color: #8B0000;
  transform: translateY(-3px);
  border-color: #FFD700;
}

.page-about__story-section,
.page-about__values-section,
.page-about__why-choose-section,
.page-about__commitment-section,
.page-about__cta-section {
  padding: 80px 0;
}

.page-about__story-section,
.page-about__commitment-section {
  background-color: #f9f9f9;
}

.page-about__values-section,
.page-about__why-choose-section {
  background-color: #ffffff;
}

.page-about__section-title {
  font-size: 2.8em;
  color: #8B0000; /* Deep Red for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

.page-about__paragraph {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: justify;
  color: #444444;
}

.page-about__highlight {
  color: #8B0000;
  font-weight: bold;
}

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

.page-about__value-card,
.page-about__feature-card {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 400px; /* Ensure cards have minimum height for content */
}

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

.page-about__value-icon,
.page-about__feature-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum image width */
  min-height: 200px; /* Minimum image height */
}

.page-about__value-title,
.page-about__feature-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__value-description,
.page-about__feature-description {
  font-size: 1em;
  color: #555555;
  text-align: justify;
  flex-grow: 1; /* Allow description to take available space */
}

.page-about__cta-section {
  background-color: #8B0000; /* Deep Red background for CTA */
  color: #ffffff;
  text-align: center;
  padding: 100px 0;
}

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

.page-about__cta-title {
  font-size: 3em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #8B0000;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
  margin-right: 20px;
}

.page-about__cta-button:hover {
  background-color: #ffffff;
  color: #8B0000;
  transform: translateY(-5px);
  border-color: #ffffff;
}

.page-about__cta-secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Gold for secondary CTA button */
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-about__cta-secondary-button:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-5px);
}

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

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-content {
    padding: 60px 15px;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__story-section, 
  .page-about__values-section, 
  .page-about__why-choose-section, 
  .page-about__commitment-section, 
  .page-about__cta-section {
    padding: 60px 0;
  }
  .page-about__paragraph {
    font-size: 1em;
  }
  .page-about__value-card, 
  .page-about__feature-card {
    padding: 25px;
    min-height: auto; /* Allow height to adjust on mobile */
  }
  .page-about__value-icon, 
  .page-about__feature-image {
    max-width: 100%;
    width: 100%;
    height: auto; /* Ensure images are responsive and prevent overflow */
    min-width: 200px; /* Maintain minimum size for content images */
    min-height: 200px; /* Maintain minimum size for content images */
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__cta-button, 
  .page-about__cta-secondary-button {
    padding: 12px 25px;
    font-size: 1em;
    margin-right: 0;
    margin-bottom: 15px;
    display: block; /* Stack buttons on mobile */
  }
  .page-about__cta-button:last-child, 
  .page-about__cta-secondary-button:last-child {
    margin-bottom: 0;
  }
  .page-about__features-grid, .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__hero-image {
    max-height: 400px;
    position: relative; /* Adjust for mobile if needed */
    opacity: 0.2;
  }
  .page-about__hero-section {
    padding-bottom: 20px;
  }
  /* Ensure all images within .page-about are responsive and do not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    min-width: 200px; /* Enforce min size for content images */
    min-height: 200px; /* Enforce min 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.8em;
  }
}