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

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

/* Hero Section */
.page-about__hero-section {
  background: linear-gradient(135deg, #1A237E, #3f4a8e);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFC107; /* High contrast with dark background */
  font-weight: bold;
}

.page-about__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #FFC107;
  color: #1A237E;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__hero-button:hover {
  background-color: #e6b000;
  transform: translateY(-3px);
}

/* General Section Styling */
.page-about__mission-section, .page-about__vision-section, .page-about__values-section, .page-about__cta-section {
  padding: 80px 0;
}

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

.page-about__section-paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  color: #444;
}

.page-about__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-about__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-about__text-content {
  flex: 1;
}

.page-about__image-container {
  flex: 1;
  text-align: center;
}

.page-about__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Values Section */
.page-about__values-section {
  background-color: #ffffff;
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-about__value-card {
  background-color: #f0f2f5;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-about__value-title {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 15px;
  font-weight: bold;
}

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

/* CTA Section */
.page-about__cta-section {
  background: linear-gradient(45deg, #1A237E, #3f4a8e);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

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

.page-about__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FFC107;
  color: #1A237E;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button:hover {
  background-color: #e6b000;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-about__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-about__image-container {
    order: -1; /* Image appears before text on small screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section, .page-about__mission-section, .page-about__vision-section, .page-about__values-section, .page-about__cta-section {
    padding: 60px 0;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-button, .page-about__cta-button {
    font-size: 1.1em;
    padding: 12px 30px;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__section-paragraph {
    font-size: 1em;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 0.95em;
  }
  .page-about__hero-button, .page-about__cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-about__section-title {
    font-size: 1.6em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
}