.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 20px;
  box-sizing: border-box;
}

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

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body padding-top handles header offset */
  overflow: hidden;
}

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

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly for visual effect, but not text on image */
  background-color: #0A4B2C; /* Deep Green for contrast */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-about__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6;
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 48px);
}

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

.page-about__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 15px 30px;
  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(17, 168, 78, 0.4);
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
  transform: translateY(-2px);
}

.page-about__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__section-description {
  font-size: 1.1em;
  color: #A7D9B8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-about__paragraph {
  font-size: 1em;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

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

.page-about__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(17, 168, 78, 0.3);
}

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

.page-about__card-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-about__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

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

.page-about__list li::before {
  content: '✔';
  color: #2AD16F; /* A brighter green from button gradient */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-about__content-area {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 40px 20px;
}

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

.page-about__text-content {
  flex: 1;
}

.page-about__image-content {
  flex: 1;
  min-width: 200px; /* Minimum size for content images */
}

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

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

.page-about__feature-card {
  background-color: #11271B;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
  transition: transform 0.3s ease;
}

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

.page-about__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-about__feature-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__feature-text {
  font-size: 0.95em;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-about__responsibility-list li::before {
  content: '★'; /* Using a star for responsibility list */
  color: #F2C14E; /* Gold */
}

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

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

.page-about__guide-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__numbered-list {
  list-style: decimal;
  padding-left: 20px;
  color: #A7D9B8;
}

.page-about__numbered-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-about__numbered-list li::before {
  content: none; /* Remove default bullet */
}

.page-about__partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-about__partner-logo {
  width: 180px;
  height: 90px;
  object-fit: contain;
  filter: grayscale(80%) opacity(0.7);
  transition: filter 0.3s ease;
}

.page-about__partner-logo:hover {
  filter: grayscale(0%) opacity(1);
}

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

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

.page-about__faq-item[open] {
  background-color: #11271B; /* Card BG for open state */
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  color: #F2FFF6;
  cursor: pointer;
  font-weight: bold;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  list-style: none; /* For details/summary */
}

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

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2AD16F;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  transform: rotate(45deg); /* + becomes x or - */
}

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

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

.page-about__faq-answer a {
  color: #2AD16F;
  text-decoration: underline;
}

.page-about__cta-title {
  font-size: clamp(26px, 3.8vw, 45px);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-about__cta-description {
  font-size: 1.1em;
  color: #A7D9B8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-about__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__content-area {
    flex-direction: column;
    text-align: center;
  }

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

  .page-about__text-content, .page-about__image-content {
    width: 100%;
  }

  .page-about__image {
    margin-top: 30px;
  }

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

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

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

  .page-about__main-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-about__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-about__section-title {
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 30px;
  }

  .page-about__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-about__grid-layout, .page-about__features-grid, .page-about__guide-grid {
    grid-template-columns: 1fr;
  }

  .page-about__card, .page-about__feature-card, .page-about__guide-card {
    padding: 25px;
  }

  .page-about__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .page-about__feature-title {
    font-size: 1.2em;
  }

  .page-about__partner-logo {
    width: 120px;
    height: 60px;
  }

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

  .page-about__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-about__cta-title {
    font-size: clamp(24px, 6vw, 38px);
  }

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

  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__hero-image-wrapper,
  .page-about__image-content,
  .page-about__partners-grid,
  .page-about__container,
  .page-about__section,
  .page-about__card,
  .page-about__feature-card,
  .page-about__guide-card,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  /* Mobile button responsiveness */
  .page-about__cta-button,
  .page-about__cta-button--large,
  .page-about a[class*="button"],
  .page-about a[class*="btn"] {
    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;
    text-align: center;
  }

  .page-about__partners-grid {
    flex-wrap: wrap;
    gap: 15px;
  }

  .page-about__partner-logo {
    width: 45% !important; /* Adjust for smaller screens */
    height: auto !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .page-about__hero-content {
    margin-top: -30px;
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__cta-button--large {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-about__partner-logo {
    width: 100% !important;
  }
}