/* style/about.css */
.page-about {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

.page-about__hero {
  background-color: #0A246A;
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 36, 106, 0.9), rgba(255, 215, 0, 0.2));
  z-index: 1;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 2;
}

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

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 2;
}

.page-about__btn--primary {
  background-color: #FFD700;
  color: #0A246A;
  font-size: 1.1em;
}

.page-about__btn--primary:hover {
  background-color: #e6c200;
}

.page-about__btn--dark {
  background-color: #0A246A;
  color: #FFD700;
  font-size: 1.1em;
}

.page-about__btn--dark:hover {
  background-color: #1a3a8a;
}

.page-about__btn--dark-outline {
  background-color: transparent;
  color: #0A246A;
  border: 2px solid #0A246A;
  font-size: 1.1em;
}

.page-about__btn--dark-outline:hover {
  background-color: #0A246A;
  color: #FFD700;
}

.page-about__section {
  padding: 80px 0;
  text-align: center;
}

.page-about__introduction {
  background-color: #ffffff;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #0A246A;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

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

@media (min-width: 768px) {
  .page-about__grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-about__introduction .page-about__content-block {
    order: 1;
  }
  .page-about__introduction .page-about__image-wrapper {
    order: 2;
  }
}

.page-about__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.page-about__mission-vision {
  background-color: #0A246A;
  color: #ffffff;
}

.page-about__mission-vision .page-about__section-title {
  color: #FFD700;
}

.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: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

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

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

.page-about__why-choose-us {
  background-color: #f9f9f9;
}

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

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

.page-about__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-about__feature-title {
  font-size: 1.4em;
  color: #0A246A;
  margin-bottom: 10px;
}

.page-about__feature-item p {
  color: #666;
  font-size: 1em;
}

.page-about__cta {
  background-color: #FFD700;
  color: #0A246A;
  padding: 60px 0;
}

.page-about__cta .page-about__section-title {
  color: #0A246A;
}

.page-about__cta .page-about__section-title::after {
  background-color: #0A246A;
}

.page-about__cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-about__team {
  background-color: #ffffff;
}

.page-about__team-intro {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__team-member-card {
  background-color: #f0f4f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-about__team-member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #FFD700;
  box-shadow: 0 0 0 3px #0A246A;
}

.page-about__team-member-name {
  font-size: 1.5em;
  color: #0A246A;
  margin-bottom: 5px;
}

.page-about__team-member-role {
  font-size: 1em;
  color: #666;
}

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

@media (max-width: 767px) {
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__grid {
    grid-template-columns: 1fr;
  }
  .page-about__grid--two-col {
    grid-template-columns: 1fr;
  }
  .page-about__content-block, .page-about__card {
    text-align: center;
  }
  .page-about__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-about__cta p {
    font-size: 1em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-about__cta-buttons .page-about__btn {
    width: 80%;
  }
}