.page-about {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #333333; /* Dark text for default white 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;
  background-color: #0A2463; /* Main brand color for hero background */
  color: #ffffff;
  padding: 0;
  overflow: hidden;
}

.page-about__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 60px 20px;
  text-align: center;
}

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

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #E5A000; /* Accent color for title */
}

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.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;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  min-width: 180px;
  text-align: center;
}

.page-about__button--primary {
  background-color: #E5A000; /* Accent color */
  color: #0A2463; /* Main brand color for text */
}

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

.page-about__button--secondary {
  background-color: transparent;
  border: 2px solid #E5A000;
  color: #E5A000;
}

.page-about__button--secondary:hover {
  background-color: #E5A000;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-about__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Main brand color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E5A000;
  border-radius: 2px;
}

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

.page-about__mission-section {
  background-color: #f8f8f8;
}

.page-about__mission-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.page-about__mission-content .page-about__text {
  flex: 1;
  font-size: 1.1em;
  text-align: left;
}

.page-about__mission-image {
  flex: 1;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

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

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

.page-about__card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-about__card-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
}

.page-about__card-link {
  color: #E5A000;
  text-decoration: none;
  font-weight: bold;
}

.page-about__card-link:hover {
  text-decoration: underline;
}

.page-about__values-image {
  display: block;
  margin: 0 auto;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-about__why-choose-section {
  background-color: #0A2463;
  color: #ffffff;
}

.page-about__why-choose-section .page-about__section-title {
  color: #E5A000;
}

.page-about__why-choose-section .page-about__section-title::after {
  background-color: #ffffff;
}

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

.page-about__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  transition: background-color 0.3s ease;
}

.page-about__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-about__feature-title {
  font-size: 1.4em;
  color: #E5A000;
  margin-bottom: 15px;
}

.page-about__feature-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-about__feature-link {
  color: #E5A000;
  text-decoration: none;
  font-weight: bold;
}

.page-about__feature-link:hover {
  text-decoration: underline;
}

.page-about__cta-section {
  background-color: #E5A000; /* Accent color for CTA */
  color: #0A2463;
  text-align: center;
  padding: 80px 20px;
}

.page-about__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A2463;
}

.page-about__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

  .page-about__mission-content {
    flex-direction: column;
    text-align: center;
  }

  .page-about__mission-image {
    max-width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: var(--header-offset, 80px);
  }

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

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

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

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

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

  .page-about__mission-section,
  .page-about__values-section,
  .page-about__why-choose-section,
  .page-about__cta-section {
    padding: 60px 0;
  }

  .page-about__values-grid,
  .page-about__why-choose-grid {
    grid-template-columns: 1fr;
  }

  .page-about__values-image {
    max-width: 100%;
  }

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

  .page-about__cta-text {
    font-size: 1em;
  }

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

  /* Content area images must be at least 200px, but responsive */
  .page-about__mission-image, 
  .page-about__values-image {
    min-width: 200px;
    min-height: 200px;
  }
}

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

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

  .page-about__section-title {
    font-size: 1.5em;
  }

  .page-about__cta-title {
    font-size: 1.6em;
  }
}