.page-about {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
  color: #F2FFF6;
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
}

.page-about__main-title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: #F2C14E; /* Gold */
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
}

.page-about__intro-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
}

.page-about__section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__mission-vision,
.page-about__team-section,
.page-about__faq-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6;
}

.page-about__dark-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

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

.page-about__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__card-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #57E38D; /* Glow */
}

.page-about__card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-about__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: auto;
  min-height: 200px;
  object-fit: cover;
}

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

.page-about__value-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-about__value-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
}

.page-about__value-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #A7D9B8;
}

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

.page-about__team-member {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-about__member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #57E38D;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-about__member-name {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #F2FFF6;
}

.page-about__member-position {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-about__member-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #A7D9B8;
}

.page-about__milestone-timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0 auto;
  padding: 20px 0;
}

.page-about__milestone-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #2E7A4E; /* Divider */
  transform: translateX(-50%);
}

.page-about__milestone-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.page-about__milestone-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.page-about__milestone-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.page-about__milestone-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #F2C14E; /* Gold */
  border: 3px solid #0A4B2C; /* Deep Green */
  border-radius: 50%;
  top: 27px;
  z-index: 1;
}

.page-about__milestone-item:nth-child(odd)::after {
  right: -8px;
}

.page-about__milestone-item:nth-child(even)::after {
  left: -8px;
}

.page-about__milestone-year {
  font-size: 1.8rem;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
}

.page-about__milestone-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8;
}

.page-about__faq-list {
  margin-top: 40px;
}

.page-about__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.page-about__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-about__faq-item[open] summary {
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__faq-qtext {
  flex-grow: 1;
}

.page-about__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #A7D9B8;
}

.page-about__faq-answer p {
  margin-bottom: 0;
}

.page-about__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

.page-about__cta-section .page-about__section-title {
  color: #F2C14E; /* Gold */
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D;
}

.page-about__btn-secondary:hover {
  background-color: #57E38D;
  color: #11271B; /* Card BG (darker for contrast) */
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-about a {
  color: #57E38D;
  text-decoration: none;
}

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

/* Responsive styles */
@media (max-width: 992px) {
  .page-about__milestone-timeline::before {
    left: 15px;
  }

  .page-about__milestone-item {
    width: 100%;
    padding-left: 45px;
    padding-right: 15px;
    text-align: left !important;
  }

  .page-about__milestone-item:nth-child(odd),
  .page-about__milestone-item:nth-child(even) {
    left: 0;
  }

  .page-about__milestone-item:nth-child(odd)::after,
  .page-about__milestone-item:nth-child(even)::after {
    left: 8px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .page-about__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-about__section-title {
    font-size: 2rem;
  }

  .page-about__intro-text,
  .page-about__section-description,
  .page-about__card p,
  .page-about__value-item p,
  .page-about__member-bio,
  .page-about__milestone-item p,
  .page-about__faq-answer p {
    font-size: 0.95rem;
  }

  .page-about__hero-section,
  .page-about__mission-vision,
  .page-about__values-section,
  .page-about__team-section,
  .page-about__milestones-section,
  .page-about__faq-section,
  .page-about__cta-section {
    padding: 60px 0;
  }

  .page-about__card-grid,
  .page-about__value-list,
  .page-about__team-grid {
    grid-template-columns: 1fr;
  }
  
  .page-about__member-photo {
    min-width: 150px;
    min-height: 150px;
  }

  .page-about__faq-item summary {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  
  .page-about__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-section,
  .page-about__mission-vision,
  .page-about__values-section,
  .page-about__team-section,
  .page-about__milestones-section,
  .page-about__faq-section,
  .page-about__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Specific padding for hero content on mobile */
  .page-about__hero-content {
    padding: 20px 15px;
  }

  .page-about__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .page-about__section-title {
    font-size: 1.8rem;
  }

  .page-about__faq-item summary {
    font-size: 1rem;
  }
}