.page-about {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

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

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

.page-about__hero-description {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-about__button--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A192F; /* Dark text for accent background */
  border: 2px solid #FFD700;
}

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

.page-about__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Accent color for text */
  border: 2px solid #FFD700;
}

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

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

.page-about__section-title {
  font-size: 2.5rem;
  color: #FFD700; /* Accent color */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

.page-about__story-section {
  padding: 60px 0;
  background-color: #0A192F; /* Main brand color for section background */
}

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

.page-about__story-image {
  width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-about__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  width: 50%;
}

.page-about__mission-values-section {
  padding: 60px 0;
}

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

.page-about__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 215, 0, 0.15); /* Slight accent hover */
}

.page-about__card-title {
  font-size: 1.8rem;
  color: #FFD700; /* Accent color */
  margin-bottom: 15px;
}

.page-about__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #c0c0c0;
}

.page-about__why-choose-section {
  padding: 60px 0;
  background-color: #0A192F; /* Main brand color */
}

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

.page-about__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-about__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.page-about__feature-item:hover .page-about__feature-image {
  transform: scale(1.05);
}

.page-about__feature-title {
  font-size: 1.5rem;
  color: #FFD700; /* Accent color */
  padding: 20px 20px 10px;
}

.page-about__feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #c0c0c0;
  padding: 0 20px 20px;
}

.page-about__cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0A192F, #000);
}

.page-about__cta-title {
  font-size: 3rem;
  color: #FFD700; /* Accent color */
  margin-bottom: 20px;
}

.page-about__cta-text {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3rem;
  }

  .page-about__hero-description {
    font-size: 1.1rem;
  }

  .page-about__story-content {
    flex-direction: column;
  }

  .page-about__story-image,
  .page-about__text {
    width: 100%;
  }

  .page-about__section-title {
    font-size: 2.2rem;
  }

  .page-about__cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    min-height: 500px;
    padding: 40px 15px;
  }

  .page-about__hero-title {
    font-size: 2.2rem;
  }

  .page-about__hero-description {
    font-size: 1rem;
  }

  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__button {
    width: 100%;
    max-width: 300px;
  }

  .page-about__container {
    padding: 30px 15px;
  }

  .page-about__section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .page-about__card {
    padding: 25px;
  }

  .page-about__card-title {
    font-size: 1.6rem;
  }

  .page-about__feature-image {
    height: 200px;
  }

  .page-about__cta-title {
    font-size: 2rem;
  }

  .page-about__cta-text {
    font-size: 1.1rem;
  }

  /* Ensure content images do not overflow on mobile */
  .page-about img {
    max-width: 100%;
    height: auto;
  }

  .page-about__story-image {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8rem;
  }

  .page-about__hero-description {
    font-size: 0.9rem;
  }

  .page-about__section-title {
    font-size: 1.8rem;
  }

  .page-about__card-title {
    font-size: 1.4rem;
  }

  .page-about__cta-title {
    font-size: 1.8rem;
  }
  .page-about__text,
  .page-about__card-text,
  .page-about__feature-text,
  .page-about__cta-text {
    font-size: 0.95rem;
  }
}