/* style/about.css */
.page-about {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #FFFFFF; /* Default text color for dark background */
  background-color: #0A2239; /* Main background color */
}

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

.page-about__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #1A3C5B 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-about__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-about__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__highlight {
  color: #FFD700;
}

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-right: 15px;
}

.page-about__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-about__btn--tertiary:hover {
  background-color: #1A3C5B;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__mission-vision-section {
  padding: 80px 0;
  background-color: #0A2239;
}

.page-about__mission, .page-about__vision {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.page-about__mission .page-about__text, .page-about__vision .page-about__text {
  max-width: 800px;
  margin-bottom: 30px;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  font-weight: 700;
}

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

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

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

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

.page-about__values-section {
  background-color: #1A3C5B;
  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: 40px;
}

.page-about__value-item {
  background-color: #0A2239;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #FFD700;
}

.page-about__value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-about__value-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-about__value-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-about__cta-section {
  background-color: #0A2239;
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
}

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

.page-about__cta-text {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

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

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

  .page-about__hero-subtitle {
    font-size: 1.1em;
  }

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

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

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

  .page-about__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-about__btn {
    width: 80%;
    margin-right: 0 !important;
  }
}

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

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

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

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