/* style/about.css */
.page-about {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1A202C; /* Dark text on light background */
  background-color: #F7FAFC;
}

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

.page-about__hero-section {
  background-color: #1A202C;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E2E8F0;
}

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

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

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

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

.page-about__btn--secondary:hover {
  background-color: #333d4d;
  border-color: #FFD700;
  color: #FFD700;
}

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

.page-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .page-about__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-about__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-about__card-text {
  color: #4A5568;
  font-size: 1em;
}

.page-about__values-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .page-about__values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-about__values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-about__value-item {
  background-color: #f2f2f2;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.page-about__value-item:hover {
  background-color: #e6e6e6;
}

.page-about__value-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-about__value-text {
  color: #4A5568;
}

.page-about__cta-section {
  background-color: #1A202C;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-about__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #E2E8F0;
}

.page-about__cta-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: auto;
  opacity: 0.3;
  z-index: 0;
  display: none; /* Hide on small screens */
}

@media (min-width: 768px) {
  .page-about__cta-image {
    display: block;
  }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title,
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
}

/* Animation for JS */
.page-about .is-visible {
  opacity: 1;
  transform: translateY(0);
}