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

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

.page-about__hero-section {
  background-color: #1A2035; /* Primary dark blue */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold */
}

.page-about__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-about__mission-vision-section {
  background-color: #282D40; /* Slightly lighter dark blue */
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.page-about__mission, .page-about__vision {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 30px;
  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: #FFD700;
  border-radius: 2px;
}

.page-about__mission p, .page-about__vision p {
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-about__values-section {
  background-color: #1A2035; /* Primary dark blue */
  padding: 80px 0;
  text-align: center;
}

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

.page-about__value-item {
  background-color: #282D40; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

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

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

.page-about__value-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: invert(80%) sepia(90%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Gold tint for icons */
}

.page-about__cta-section {
  background-color: #FFD700; /* Gold secondary color */
  padding: 80px 0;
  text-align: center;
  color: #1A2035; /* Dark blue for text on gold background */
}

.page-about__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #1A2035;
}

.page-about__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #333;
}

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

.page-about__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2035; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
  background-color: #E6C200; /* Darker gold */
  border-color: #E6C200;
}

.page-about__btn--secondary {
  background-color: transparent;
  color: #1A2035; /* Dark blue */
  border: 2px solid #1A2035;
}

.page-about__btn--secondary:hover {
  background-color: #1A2035;
  color: #FFD700; /* Gold */
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-about__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-section .page-about__image {
    margin-top: 50px;
}

.highlight {
    color: #FFD700;
}

.page-about__cta-section .highlight {
    color: #1A2035;
}

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

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

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

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

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

  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
}

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

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

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

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

  .page-about__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}