.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); /* Ensure content is below fixed header */
}

.page-about__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.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;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Darker background for content */
  border-radius: 10px;
}

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

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

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

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

.page-about__button--primary {
  background-color: #FFD700;
  color: #0d1a2f; /* Dark text for gold button */
}

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

.page-about__button--secondary {
  background-color: #1E90FF;
  color: #ffffff;
}

.page-about__button--secondary:hover {
  background-color: #1a7ad9;
  transform: translateY(-2px);
}

.page-about__story-section, .page-about__mission-values-section, .page-about__why-us-section, .page-about__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-about__story-container, .page-about__why-us-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-about__story-section .page-about__story-container {
  flex-direction: row;
}

.page-about__why-us-section .page-about__why-us-container {
  flex-direction: row-reverse;
}

.page-about__story-text, .page-about__why-us-content {
  flex: 1;
}

.page-about__story-image-wrapper, .page-about__why-us-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__story-image, .page-about__why-us-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-about__story-title, .page-about__mission-values-title, .page-about__why-us-title, .page-about__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: center;
}

.page-about__story-paragraph, .page-about__mission-values-description {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__mission-values-description {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

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

.page-about__value-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-about__value-icon {
  width: 100%; /* Ensure image fills card space */
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-about__value-text {
  color: #cccccc;
  font-size: 1em;
}

.page-about__button--text {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
}

.page-about__button--text:hover {
  text-decoration: underline;
}

.page-about__why-us-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__why-us-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 5px solid #1E90FF;
  border-radius: 5px;
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-about__why-us-item strong {
  color: #FFD700;
}

.page-about__why-us-item a {
  color: #1E90FF;
  text-decoration: none;
}

.page-about__why-us-item a:hover {
  text-decoration: underline;
}

.page-about__cta-section {
  text-align: center;
  background: linear-gradient(135deg, #0d1a2f 0%, #1e90ff 100%); /* Blue gradient */
  padding: 80px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-about__button--cta {
  background-color: #FFD700;
  color: #0d1a2f;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 8px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__story-title, .page-about__mission-values-title, .page-about__why-us-title, .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__story-container, .page-about__why-us-container {
    flex-direction: column;
  }
  .page-about__why-us-section .page-about__why-us-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 60px 15px;
    min-height: 450px;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    width: 100%;
    max-width: 300px;
  }
  .page-about__story-section, .page-about__mission-values-section, .page-about__why-us-section, .page-about__cta-section {
    padding: 40px 15px;
  }
  .page-about__story-container, .page-about__why-us-container {
    gap: 30px;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-description {
    font-size: 1.1em;
  }
  .page-about__hero-image, .page-about__story-image, .page-about__why-us-image, .page-about__value-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-section {
    padding: 40px 10px;
    min-height: 350px;
  }
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-content {
    padding: 20px;
  }
  .page-about__story-title, .page-about__mission-values-title, .page-about__why-us-title, .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-about__cta-section {
    padding: 50px 15px;
  }
}