/* style/about.css */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light text for dark background */
  background-color: #0A2342; /* Primary dark background */
}

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

.page-about__hero-section {
  background: linear-gradient(135deg, #0A2342, #1a3e6c);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.page-about__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
}

.page-about__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-about__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__btn--primary {
  background-color: #FFD700;
  color: #0A2342;
}

.page-about__btn--primary:hover {
  background-color: #e6c200;
}

.page-about__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__section:last-of-type {
  border-bottom: none;
}

.page-about__section-title {
  font-size: 2.2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
}

.page-about__flex-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-about__flex-container--reverse {
  flex-direction: row-reverse;
}

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

.page-about__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__mission-vision p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

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

.page-about__value-item {
  background-color: #1a3e6c; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-about__value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

.page-about__insight-block {
  background-color: #1a3e6c;
  padding: 25px;
  border-left: 5px solid #FFD700;
  margin-top: 30px;
  border-radius: 5px;
}

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

.page-about__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #0A2342;
}

.page-about__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.page-about__btn--secondary {
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-about__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

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

  .page-about__flex-container {
    flex-direction: column;
    text-align: center;
  }

  .page-about__flex-container--reverse {
    flex-direction: column;
  }

  .page-about__content-block, .page-about__image-block {
    min-width: unset;
    width: 100%;
  }

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

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