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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  text-align: center;
  min-height: 500px;
}

.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.5); /* Darken image for text readability */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #F2FFF6;
}

.page-about__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #F2FFF6;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-about__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

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

.page-about__section--introduction {
  background: #08160F; /* Background */
}

.page-about__section--why-choose,
.page-about__section--team,
.page-about__section--faq {
  background: #0A4B2C; /* Deep Green for dark sections */
}

.page-about__section--responsibility,
.page-about__section--contact {
  background: #08160F; /* Background */
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-about__section-intro {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: -30px auto 50px auto;
}

.page-about__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

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

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

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

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

.page-about__text-block {
  color: #F2FFF6; /* Text Main */
}

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

.page-about__text-block strong {
  color: #F2FFF6;
}

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

.page-about__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
  font-weight: bold;
}

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

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

.page-about__card {
  background: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #F2FFF6; /* Text Main */
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-about__card-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card-text {
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

.page-about__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-about__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: none;
  color: #2AD16F; /* Button color */
  border: 2px solid #2AD16F; /* Button color */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  cursor: pointer;
  box-sizing: border-box;
}

.page-about__btn-secondary:hover {
  background-color: #2AD16F;
  color: #11271B; /* Card B G for contrast */
}

.page-about__section-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__team-card {
  background: #11271B; /* Card B G */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #F2FFF6; /* Text Main */
}

.page-about__team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #2AD16F; /* Button color */
}

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

.page-about__team-role {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

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

.page-about__contact-info {
  color: #F2FFF6; /* Text Main */
}

.page-about__contact-text {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-about__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-about__contact-list-item {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__contact-list-item strong {
  color: #F2FFF6;
}

.page-about__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

.page-about__faq-answer {
  padding: 0 20px 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .page-about__grid--two-col,
  .page-about__grid--two-col-reverse {
    grid-template-columns: 1fr;
  }
  .page-about__hero-content {
    padding: 0 15px;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__subsection-title {
    font-size: 1.5em;
  }
  .page-about__image-wrapper {
    order: -1; /* Move image above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-about__section--responsibility .page-about__image-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__main-title {
    font-size: 2em;
  }
  .page-about__description {
    font-size: 1em;
  }
  .page-about__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
    min-height: 400px;
  }
  .page-about__section {
    padding: 50px 0;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-about__grid--three-col,
  .page-about__grid--team-members {
    grid-template-columns: 1fr;
  }
  .page-about__card,
  .page-about__team-card {
    padding: 20px;
  }
  .page-about__image,
  .page-about__team-photo {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__image-wrapper,
  .page-about__team-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-about__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-about__cta-button,
  .page-about__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }
  .page-about__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-about__contact-list-item {
    font-size: 0.9em;
  }
}

/* Contrast Fixes */
.page-about__dark-bg {
  color: #F2FFF6; /* Text Main for dark backgrounds */
}

.page-about__dark-bg p,
.page-about__dark-bg li {
  color: #A7D9B8; /* Text Secondary for dark backgrounds */
}

.page-about__card-text {
  color: #A7D9B8; /* Ensure card text is secondary color */
}

.page-about a {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
}

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