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

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

.page-about__hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-about__hero-content {
  position: relative; /* Ensure content is above the image but not overlapping */
  z-index: 2;
  max-width: 900px;
  margin-top: 40px;
}

.page-about__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-about__description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-about__dark-section {
  background-color: #11271B; /* Card BG */
}

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

.page-about__heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-about__sub-heading {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-about__content-grid--reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-about__content-grid--reverse .page-about__image-wrapper {
  order: 2;
}

.page-about__content-grid--reverse .page-about__text-block {
  order: 1;
}

.page-about__text-block p {
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-about__text-block h3 {
  color: #57E38D; /* Glow */
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 15px;
}

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

.page-about__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

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

.page-about__value-list li {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-about__value-list li::before {
  content: '✔';
  color: #2AD16F; /* Button gradient start color */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

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

.page-about__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

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

.page-about__btn-secondary:hover {
  background: #57E38D;
  color: #11271B; /* Card BG */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-about__btn-tertiary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
}

.page-about__btn-tertiary:hover {
  background: #F2C14E;
  color: #11271B; /* Card BG */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

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

.page-about__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-about__feature-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-about__feature-card h3 {
  color: #F2C14E; /* Gold */
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

.page-about__action-area {
  text-align: center;
  margin-top: 60px;
}

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

.page-about__team-member {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__team-avatar {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #2E7A4E; /* Border */
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-about__member-name {
  color: #F2C14E; /* Gold */
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.page-about__member-role {
  color: #57E38D; /* Glow */
  font-size: 1.1rem;
  margin-bottom: 15px;
}

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

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

.page-about__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__faq-item summary {
  list-style: none;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
}

.page-about__faq-item summary:hover {
  background-color: #2E7A4E; /* Border */
}

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  transform: rotate(45deg); /* Change '+' to 'x' or similar for open state */
}

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__content-grid, .page-about__content-grid--reverse {
    grid-template-columns: 1fr;
  }
  .page-about__content-grid--reverse .page-about__image-wrapper {
    order: 1;
  }
  .page-about__content-grid--reverse .page-about__text-block {
    order: 2;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-about__hero-content {
    margin-top: 20px;
  }

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

  .page-about__description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

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

  .page-about__container {
    padding: 0 15px;
  }

  .page-about__heading {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-about__sub-heading {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    margin-bottom: 40px;
  }

  .page-about__text-block p {
    font-size: 0.95rem;
  }

  .page-about__text-block h3 {
    font-size: clamp(1.3rem, 4vw, 1.7rem);
  }

  .page-about__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-about__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding: 0 15px;
  }

  .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__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
  }

  .page-about__cta-button,
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about__btn-tertiary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-right: 0 !important;
  }

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

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

  .page-about__feature-card h3 {
    font-size: 1.3rem;
  }

  .page-about__feature-icon {
    max-width: 120px;
    min-width: 120px;
    min-height: 120px;
  }

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

  .page-about__team-avatar {
    max-width: 150px;
    min-width: 150px;
    min-height: 150px;
  }

  .page-about__member-name {
    font-size: 1.4rem;
  }

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

  .page-about__faq-answer p {
    font-size: 0.9rem;
  }
}