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

.page-about__section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

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

.page-about__dark-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-about__card-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-about__section-title {
  font-size: 2.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-about__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-about__text-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__text-block--center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-about__text-block--center p {
  color: #A7D9B8; /* Text Secondary */
}

.page-about__text-link {
  color: #2AD16F; /* A vibrant green for links */
  text-decoration: underline;
}

.page-about__text-link:hover {
  color: #57E38D; /* Glow */
}

/* Hero Section */
.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-about__hero-image {
  width: 1200px; /* Display width */
  height: 675px; /* Display height (16:9 for 1200px width) */
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.page-about__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
}

.page-about__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* Buttons */
.page-about__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #57E38D 0%, #13994A 100%); /* Lighter top for hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-about__btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Content Grid Layout */
.page-about__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-about__content-grid .page-about__text-block,
.page-about__content-grid .page-about__image-block {
  flex: 1;
}

.page-about__content-image {
  width: 800px; /* Display width */
  height: 600px; /* Display height */
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* History Section */
.page-about__milestone-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-about__milestone-item {
  background-color: #08160F; /* Background */
  border-left: 4px solid #2AD16F; /* Main color for emphasis */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #F2FFF6; /* Text Main */
  font-size: 1.1em;
}

.page-about__milestone-item strong {
  color: #F2C14E; /* Gold */
}

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

.page-about__value-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__value-icon {
  width: 200px; /* Min size */
  height: 150px; /* Min size */
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
}

.page-about__value-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-about__value-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

/* Team Section */
.page-about__team-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__team-member {
  background-color: #08160F; /* Background */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__team-avatar {
  width: 250px; /* Min size */
  height: 250px; /* Min size */
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #2AD16F; /* Main color */
  max-width: 100%;
  height: auto;
}

.page-about__member-name {
  font-size: 1.4em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 5px;
}

.page-about__member-role {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

/* FAQ Section */
.page-about__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker for summary */
}

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

.page-about__faq-question:hover {
  background-color: #13994A;
}

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-about__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-about__faq-item[open] .page-about__faq-answer {
  max-height: 1000px; /* Sufficiently large to show content */
  padding-top: 15px;
}

.page-about__faq-item[open] .page-about__faq-question {
  background-color: #13994A;
}

/* Final CTA Section */
.page-about__cta-final {
  text-align: center;
  padding: 100px 0;
}

.page-about__cta-final .page-about__section-title {
  margin-bottom: 25px;
}

.page-about__cta-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__section-title {
    font-size: 2.2em;
  }

  .page-about__hero-section {
    padding-bottom: 60px;
  }

  .page-about__main-title {
    font-size: clamp(2em, 4vw, 3em);
  }

  .page-about__content-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-about__content-grid--reverse {
    flex-direction: column;
  }

  .page-about__hero-image {
    width: 100%;
    height: auto;
  }

  .page-about__value-card {
    padding: 25px;
  }

  .page-about__value-icon {
    width: 150px;
    height: 112px;
  }

  .page-about__team-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about__section {
    padding: 60px 0;
  }

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-about__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-about__hero-description,
  .page-about__cta-description {
    font-size: 1em;
  }

  .page-about__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-about__content-image,
  .page-about__value-icon,
  .page-about__team-avatar {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__container,
  .page-about__hero-content,
  .page-about__text-block,
  .page-about__image-block,
  .page-about__value-card,
  .page-about__team-member,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-about__cta-final {
    padding: 60px 0;
  }

  .page-about__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-about__faq-answer {
    font-size: 1em;
    padding: 0 15px 15px;
  }

  .page-about__btn-register {
    margin-top: 20px;
  }

  .page-about__team-gallery {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-about__section-title {
    font-size: 1.5em;
  }

  .page-about__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

  .page-about__hero-description,
  .page-about__cta-description {
    font-size: 0.9em;
  }

  .page-about__btn-primary {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-about__btn-large {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-about__value-card {
    padding: 20px;
  }

  .page-about__value-title {
    font-size: 1.3em;
  }

  .page-about__team-member {
    padding: 20px;
  }

  .page-about__member-name {
    font-size: 1.2em;
  }
}