/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1A2B47; /* Dark blue text on light backgrounds */
  background-color: #f8f8f8;
}

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

.page-about__hero {
  background: linear-gradient(135deg, #1A2B47 0%, #3a4b67 100%); /* Dark blue gradient */
  color: #ffffff; /* White text on dark background */
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-about__hero-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2B47; /* Dark blue text on gold button */
  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;
  border: none;
  cursor: pointer;
}

.page-about__hero-cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-about__hero-image-wrapper {
  margin-top: 40px;
  max-width: 90%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

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

.page-about__introduction {
  background-color: #ffffff;
  text-align: center;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #1A2B47;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-about__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

.page-about__mission-vision {
  background-color: #f2f4f7;
}

.page-about__mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}

.page-about__mission-vision-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-about__mission-vision-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

.page-about__sub-title {
  font-size: 1.8em;
  color: #1A2B47;
  margin-bottom: 15px;
}

.page-about__values {
  background-color: #ffffff;
  text-align: center;
}

.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: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-about__value-item:hover {
  transform: translateY(-5px);
  background-color: #fff7e0; /* Light gold tint on hover */
}

.page-about__value-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.page-about__value-title {
  font-size: 1.4em;
  color: #1A2B47;
  margin-bottom: 15px;
}

.page-about__cta-section {
  background-color: #1A2B47; /* Dark blue background */
  color: #ffffff; /* White text on dark background */
  text-align: center;
  padding: 80px 0;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 25px;
}

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

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-about__cta-button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2B47; /* Dark blue text */
}

.page-about__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__cta-button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border-color: #FFD700;
}

.page-about__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A2B47; /* Dark blue text */
  transform: translateY(-3px);
}

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

.page-about .keyword {
  font-weight: bold;
}

/* Animation for sections */
.page-about .fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-about .fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero {
    padding: 60px 0;
  }
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__sub-title {
    font-size: 1.6em;
  }
  .page-about__values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-about__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    flex-direction: column;
    padding: 50px 20px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-image-wrapper {
    margin-top: 30px;
  }
  .page-about__introduction,
  .page-about__mission-vision,
  .page-about__values,
  .page-about__cta-section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__sub-title {
    font-size: 1.4em;
  }
  .page-about__value-title {
    font-size: 1.2em;
  }
  .page-about__cta-title {
    font-size: 1.6em;
  }
  .page-about__hero-cta-button, .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}