.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background #f8f8f8 */
  background-color: #f8f8f8;
}

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

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

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A4B2C; /* Deep Green from palette */
  color: #F2FFF6;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

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

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

.page-about__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold from palette */
}

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

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main for button text */
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-about__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-about__cta-button--secondary {
  background: none;
  border: 2px solid #2AD16F;
  color: #2AD16F;
  margin-left: 20px;
}

.page-about__cta-button--secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
}

.page-about__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #11A84E; /* Main color */
  font-weight: bold;
}

.page-about__dark-section .page-about__section-title {
  color: #F2C14E; /* Gold for dark section titles */
}

.page-about__sub-title {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #22C768; /* Auxiliary color */
  font-weight: bold;
}

.page-about__dark-section .page-about__sub-title {
  color: #57E38D; /* Glow for dark section subtitles */
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
}

.page-about__text-block p {
  margin-bottom: 15px;
  color: inherit; /* Inherit color from parent section */
}

.page-about__text-block img {
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%; /* Ensure image takes full width of container */
}

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

.page-about__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: inherit; /* Inherit color from parent section */
}

.page-about__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Bright green checkmark */
  font-weight: bold;
}

.page-about__dark-section .page-about__list-item::before {
  color: #57E38D; /* Glow color checkmark for dark sections */
}

.page-about__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: inherit;
}

.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 from palette */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Text Main for dark card background */
}

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

.page-about__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold for feature titles */
}

.page-about__feature-card p {
  color: #A7D9B8; /* Text Secondary for card content */
}

.page-about__feature-card .page-about__list-item {
  color: #A7D9B8;
}

.page-about__text-link {
  color: #2AD16F;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.page-about__text-link:hover {
  color: #57E38D;
  text-decoration: underline;
}

.page-about__cta-wrapper {
  margin-top: 50px;
}

.page-about__faq-section {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Text Main color */
}

.page-about__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__faq-item {
  background-color: #11271B; /* Card BG from palette */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2C14E; /* Gold for FAQ question */
  background-color: #11271B; /* Card BG from palette */
  border-bottom: 1px solid #1E3A2A; /* Divider color */
  list-style: none;
}

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

.page-about__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green on hover */
}

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

.page-about__faq-item[open] .page-about__faq-toggle {
  transform: rotate(45deg);
}

.page-about__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary for FAQ answer */
  line-height: 1.8;
}

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

.page-about__call-to-action {
  background-color: #0A4B2C; /* Deep Green from palette */
  color: #F2FFF6; /* Text Main for dark background */
  padding: 80px 0;
}

.page-about__call-to-action .page-about__section-title {
  color: #F2C14E; /* Gold for CTA title */
}

.page-about__call-to-action .page-about__description {
  font-size: 1.2em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__call-to-action .page-about__cta-button {
  margin: 0 10px;
}

/* Responsive Styles */
@media (min-width: 769px) {
  .page-about__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-about__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    padding: 30px 40px;
    border-radius: 12px;
  }
  .page-about__hero-image-wrapper {
    height: 600px;
  }
  .page-about__hero-section {
    min-height: 600px;
    justify-content: flex-end; /* Push content to bottom when image is background */
    padding-bottom: 80px;
  }
}

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

  .page-about__hero-content {
    padding: 30px 15px;
  }

  .page-about__main-title {
    font-size: 2em;
  }

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

  .page-about__sub-title {
    font-size: 1.5em;
  }

  .page-about__content-grid,
  .page-about__features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .page-about__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0 !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__cta-wrapper,
  .page-about__call-to-action .page-about__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }

  /* Image responsive */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-image-wrapper,
  .page-about__content-grid,
  .page-about__features-grid,
  .page-about__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-about__hero-section {
    padding-top: 10px !important;
  }
  
  .page-about__hero-image {
    height: 300px;
  }

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

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