/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-about__hero {
  background: linear-gradient(135deg, #0A2463, #E3B505);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-about__hero > * {
  position: relative;
  z-index: 2;
}

.page-about__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #ffffff; /* Ensure high contrast */
}

.page-about__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly lighter for contrast */
}

.page-about__hero-image {
  max-width: 70%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-about__section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-about__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #0A2463;
  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: #E3B505;
  border-radius: 2px;
}

.page-about__mission-vision .page-about__container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

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

.page-about__content-block .page-about__section-title {
  text-align: left;
  margin-bottom: 20px;
  font-size: 2em;
}

.page-about__content-block .page-about__section-title::after {
  left: 0;
  transform: translateX(0);
}

.page-about__text {
  font-size: 1.1em;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-about__link-inline {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-about__link-inline:hover {
  color: #E3B505;
  text-decoration: none;
}

.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: #fefefe;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-about__value-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-about__value-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__value-description {
  font-size: 1em;
  color: #666;
}

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

.page-about__cta-content .page-about__section-title {
  color: #ffffff;
  font-size: 3em;
  margin-bottom: 25px;
}

.page-about__cta-content .page-about__section-title::after {
  background-color: #E3B505;
}

.page-about__cta .page-about__text {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-about__btn--primary {
  background-color: #E3B505;
  color: #0A2463;
  border: 2px solid #E3B505;
}

.page-about__btn--primary:hover {
  background-color: #d1a504;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-about__hero {
    padding: 60px 0;
  }

  .page-about__title {
    font-size: 2.5em;
  }

  .page-about__subtitle {
    font-size: 1.2em;
  }

  .page-about__hero-image {
    max-width: 90%;
  }

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

  .page-about__mission-vision .page-about__container {
    flex-direction: column;
  }

  .page-about__content-block .page-about__section-title {
    text-align: center;
  }

  .page-about__content-block .page-about__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

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

  .page-about__btn {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-about__hero {
    padding: 40px 0;
  }

  .page-about__title {
    font-size: 2em;
  }

  .page-about__subtitle {
    font-size: 1em;
  }

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

  .page-about__text {
    font-size: 1em;
  }

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