/* 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;
}

.page-about__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #3a4b6c 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

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

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

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

.page-about__button--primary {
  background-color: #FF8C00;
  color: #1A2B4C;
  border: 2px solid #FF8C00;
}

.page-about__button--primary:hover {
  background-color: #e67e00;
  border-color: #e67e00;
  transform: translateY(-2px);
}

.page-about__button--secondary {
  background-color: #1A2B4C;
  color: #FF8C00;
  border: 2px solid #FF8C00;
}

.page-about__button--secondary:hover {
  background-color: #0f1a2b;
  border-color: #e67e00;
  transform: translateY(-2px);
}

.page-about__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #1A2B4C;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-about__mission-vision .page-about__container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.page-about__content-block {
  flex: 1;
  min-width: 300px;
}

.page-about__content-block h2 {
  font-size: 1.8em;
  color: #1A2B4C;
  margin-bottom: 20px;
  text-align: left;
}

.page-about__content-block p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.8;
}

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

.page-about__values .page-about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-about__value-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FF8C00;
}

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

.page-about__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

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

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

.page-about__cta {
  background: linear-gradient(90deg, #1A2B4C, #3a4b6c);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-about__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__cta-title {
  color: #FF8C00;
  margin-bottom: 20px;
}

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

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-about__inline-link {
  color: #FF8C00;
  text-decoration: none;
  font-weight: bold;
}

.page-about__inline-link:hover {
  text-decoration: underline;
}

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

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

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

  .page-about__mission-vision .page-about__container {
    flex-direction: column;
  }

  .page-about__content-block h2 {
    text-align: center;
  }

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

@media (max-width: 480px) {
  .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__value-card {
    padding: 20px;
  }
}