/* style/about.css */
.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__hero {
  background: linear-gradient(135deg, #007bff, #ffc107);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

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

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

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

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

.page-about__grid-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-about__our-story {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.page-about__story-text {
  flex: 1;
}

.page-about__story-text p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

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

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

.page-about__team {
  padding: 80px 0;
  background-color: #fff;
}

.page-about__team-intro {
  text-align: center;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #555;
}

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

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

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

.page-about__member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #ffc107;
}

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

.page-about__member-title {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 15px;
}

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

.page-about__cta {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

.page-about__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
}

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

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

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

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__story-layout {
    flex-direction: column;
  }
  .page-about__story-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 60px 0;
    min-height: 300px;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-about__grid-item, .page-about__member-card {
    padding: 20px;
  }
  .page-about__grid-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__team-intro {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .page-about__hero {
    padding: 40px 0;
  }
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.6em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-about__team-members {
    grid-template-columns: 1fr;
  }
}