.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-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

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

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

.page-about__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
}

.page-about__btn--primary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

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

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

.page-about__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #fff;
}

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

.page-about__btn--outline:hover {
  background-color: #ffc107;
  color: #333;
}

.page-about__mission-vision-section {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.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__grid-item {
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background-color: #fefefe;
  transition: transform 0.3s ease;
}

.page-about__grid-item:hover {
  transform: translateY(-10px);
}

.page-about__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.page-about__section-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__text {
  font-size: 1.1em;
  color: #555;
}

.page-about__values-section {
  padding: 80px 0;
  background-color: #f0f4f8;
  text-align: center;
}

.page-about__main-title {
  font-size: 2.8em;
  color: #007bff;
  margin-bottom: 50px;
  font-weight: bold;
}

.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: 992px) {
  .page-about__values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-about__value-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-about__card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 6px rgba(255, 193, 7, 0.4));
}

.page-about__card-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-about__cta-section {
  background: linear-gradient(45deg, #0056b3, #007bff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

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

.page-about__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__main-title {
    font-size: 2.2em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 767px) {
  .page-about__hero-section,
  .page-about__mission-vision-section,
  .page-about__values-section,
  .page-about__cta-section {
    padding: 60px 0;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__main-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-about__card-title {
    font-size: 1.3em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__btn {
    padding: 10px 20px;
    font-size: 1em;
    margin: 8px;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  .page-about__section-title {
    font-size: 1.6em;
  }
  .page-about__main-title {
    font-size: 1.8em;
  }
  .page-about__cta-title {
    font-size: 1.6em;
  }
}