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

.page-about__hero {
  background: linear-gradient(135deg, #007bff, #4da3ff);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.3;
  animation: page-about__pulse 10s infinite alternate;
}

@keyframes page-about__pulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0.1; }
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-about__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
  position: relative;
  z-index: 1;
}

.page-about__btn--primary {
  background-color: #ffc107;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-about__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-about__btn--secondary {
  background-color: #0056b3;
  color: #fff;
  border: 2px solid #0056b3;
  margin-left: 15px;
}

.page-about__btn--secondary:hover {
  background-color: #004085;
  border-color: #004085;
  transform: translateY(-2px);
}

.page-about__section {
  padding: 60px 0;
}

.page-about__section--story {
  background-color: #fff;
}

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

.page-about__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ffc107;
  margin: 10px auto 0;
  border-radius: 2px;
}

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

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

.page-about__content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

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

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

.page-about__section--mission-vision {
  background-color: #e9f5ff;
}

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

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

.page-about__card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  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-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__card p {
  color: #666;
  font-size: 1.05em;
}

.page-about__section--values {
  background-color: #f8f9fa;
}

.page-about__grid--three-col {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-about__value-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-about__value-item:hover {
  transform: translateY(-5px);
}

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

.page-about__value-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-about__value-item p {
  color: #777;
  font-size: 0.95em;
}

.page-about__section--cta {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__cta-content {
  position: relative;
  z-index: 2;
}

.page-about__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-about__cta-buttons .page-about__btn {
  margin: 10px;
}

.page-about__cta-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: rotate(-5deg);
  transition: transform 0.5s ease-in-out;
}

.page-about__cta-image:hover {
  transform: rotate(0deg) scale(1.03);
}

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

@media (max-width: 767px) {
  .page-about__hero {
    padding: 80px 0;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-about__btn--secondary {
    margin-left: 0;
    margin-top: 10px;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__card {
    padding: 20px;
  }
  .page-about__card-title {
    font-size: 1.5em;
  }
  .page-about__value-item {
    padding: 20px;
  }
  .page-about__value-title {
    font-size: 1.2em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__cta-image {
    max-width: 300px;
  }
}