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

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

.page-about__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-about__section:last-of-type {
  border-bottom: none;
}

.page-about__hero-section {
  background: linear-gradient(135deg, #007bff, #4da3ff); /* Adjusted for better contrast on text */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-about__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0; /* Slightly off-white for contrast */
}

.page-about__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-about__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-about__btn--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #333; /* Dark text for contrast */
  border: 2px solid #ffc107;
}

.page-about__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #fff;
}

.page-about__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-about__btn--secondary:hover {
  background-color: #fff;
  color: #007bff;
}

.page-about__btn--outline {
  background-color: transparent;
  color: #007bff; /* Main color */
  border: 2px solid #007bff;
}

.page-about__btn--outline:hover {
  background-color: #007bff;
  color: #fff;
}

.page-about__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-about__btn--centered {
  display: block;
  margin: 30px auto 0 auto;
  width: fit-content;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #007bff; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

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

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

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

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

.page-about__intro-section p {
  margin-bottom: 15px;
  color: #555;
}

.page-about__mission-vision .page-about__grid-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-about__card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about__card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-about__card p {
  color: #555;
}

.page-about__values-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__values-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #ffc107;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  color: #555;
}

.page-about__values-list li strong {
  color: #007bff;
}

.page-about__team-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #555;
}

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

.page-about__team-member {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-about__team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #007bff;
}

.page-about__member-name {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 5px;
}

.page-about__member-role {
  font-style: italic;
  color: #ffc107;
  margin-bottom: 15px;
}

.page-about__member-bio {
  font-size: 0.95em;
  color: #666;
}

.page-about__why-choose-us p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-about__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-about__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-about__feature-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-about__feature-item p {
  font-size: 0.95em;
  color: #666;
  text-align: center;
}

.page-about__cta-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.page-about__csr-section p {
  margin-bottom: 15px;
  color: #555;
}

.page-about__detail-pages p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
}

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

.page-about__detail-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-about__detail-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-about__detail-title a {
  color: #007bff;
  text-decoration: none;
}

.page-about__detail-title a:hover {
  text-decoration: underline;
}

.page-about__detail-description {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-about__contact-cta {
  background-color: #e9ecef;
  padding: 80px 0;
}

.page-about__contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-about__contact-info p {
  margin-bottom: 20px;
  color: #555;
}

.page-about__cta-block {
  background-color: #007bff;
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.page-about__cta-image {
  max-width: 150px;
  height: auto;
  margin-bottom: 25px;
}

.page-about__cta-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: #ffc107; /* Auxiliary color for highlight */
}

.page-about__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__content-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-about__content-flex--reverse {
    flex-direction: column;
  }
  .page-about__image-wrapper {
    margin-top: 30px;
  }
  .page-about__mission-vision .page-about__grid-two-cols,
  .page-about__contact-grid {
    grid-template-columns: 1fr;
  }
  .page-about__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-about__cta-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-subtitle {
    font-size: 1.1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__card-title {
    font-size: 1.5em;
  }
  .page-about__feature-title {
    font-size: 1.3em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
}