/* 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, #003366 0%, #003366 70%, #FFCC00 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.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, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-about__button--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

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

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

.page-about__button--secondary:hover {
  background-color: #002244;
  transform: translateY(-3px);
}

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

.page-about__button--tertiary:hover {
  background-color: #003366;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
}

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

.page-about__section {
  padding: 60px 0;
  text-align: center;
}

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

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

.page-about__text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #555;
  line-height: 1.8;
}

.page-about__text a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-about__text a:hover {
  color: #FFCC00;
}

.page-about__mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.page-about__content-block {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

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

.page-about__image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-about__image--left {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

.page-about__image--right {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
}

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

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

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

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

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

.page-about__cta {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 0;
}

.page-about__cta .page-about__section-title {
  color: #FFCC00;
}

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

.page-about__cta .page-about__text {
  color: #e0e0e0;
}

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

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

  .page-about__mission-vision .page-about__content-block {
    max-width: 100%;
  }

  .page-about__image--left, .page-about__image--right {
    float: none;
    margin: 20px auto;
    display: block;
  }
}

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

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

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

  .page-about__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-about__section {
    padding: 40px 0;
  }

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

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

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

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

  .page-about__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

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