/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A2239; /* Deep Sapphire Blue */
  line-height: 1.6;
}

.page-about .highlight {
  color: #FFD700; /* Gold for highlights */
}

.page-about__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1A3C59 100%);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

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

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
  filter: grayscale(100%);
}

.page-about__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about__title {
  font-size: 3.2em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about__subtitle {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 30px;
}

.page-about__button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #0A2239; /* Deep Sapphire Blue */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-about__button:hover {
  background-color: #E6C200; /* Darker Gold */
  transform: translateY(-2px);
}

.page-about__button--secondary {
  background-color: #0F3A5D; /* Slightly lighter blue */
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

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

.page-about__button--outline:hover {
  background-color: #FFD700;
  color: #0A2239;
}

.page-about__section {
  padding: 60px 20px;
  background-color: #0A2239;
}

.page-about__section:nth-of-type(even) {
  background-color: #0F2D4A; /* Slightly different dark blue for contrast */
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-about__container.reverse-layout {
  flex-direction: row-reverse;
}

.page-about__content-block,
.page-about__image-block {
  flex: 1;
  min-width: 300px;
}

.page-about__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__heading {
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.3;
}

.page-about__heading--center {
  text-align: center;
  margin-bottom: 50px;
}

.page-about__story p, .page-about__mission-vision p {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 15px;
}

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

.page-about__value-item {
  background-color: #1A3C59; /* Darker blue for value cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-about__value-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-about__value-item p {
  color: #C0C0C0;
  font-size: 1em;
}

.page-about__cta {
  background-color: #FFD700; /* Gold background for CTA */
  color: #0A2239; /* Deep Sapphire Blue text */
  text-align: center;
  padding: 80px 20px;
}

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

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

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

.page-about__cta-buttons .page-about__button {
  background-color: #0A2239;
  color: #FFD700;
  border: 2px solid #0A2239;
}

.page-about__cta-buttons .page-about__button:hover {
  background-color: #1A3C59;
  border-color: #1A3C59;
}

.page-about__cta-buttons .page-about__button--outline {
  background-color: transparent;
  color: #0A2239;
  border-color: #0A2239;
}

.page-about__cta-buttons .page-about__button--outline:hover {
  background-color: #0A2239;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__container {
    flex-direction: column;
  }
  .page-about__container.reverse-layout {
    flex-direction: column;
  }
  .page-about__hero {
    padding: 60px 15px;
  }
  .page-about__title {
    font-size: 2.5em;
  }
  .page-about__subtitle {
    font-size: 1.1em;
  }
  .page-about__heading {
    font-size: 2em;
    text-align: center;
  }
  .page-about__content-block, .page-about__image-block {
    min-width: unset;
    width: 100%;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta .page-about__heading {
    font-size: 2.2em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-about__title {
    font-size: 2em;
  }
  .page-about__heading {
    font-size: 1.8em;
  }
  .page-about__section {
    padding: 40px 15px;
  }
}