.page-about {
  color: #F2FFF6; /* Main text color for dark background */
  background-color: #08160F; /* Overall background */
  font-family: 'Arial', sans-serif; /* Example font */
  line-height: 1.6;
}

/* Ensure the main content container has correct padding and max-width */
.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Default desktop padding */
  box-sizing: border-box;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image then content */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #08160F; /* Ensure background color for the section */
  overflow: hidden; /* To contain image */
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for aesthetic */
  overflow: hidden;
}

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

.page-about__hero-content {
  z-index: 1;
  padding: 40px 20px 0;
  max-width: 800px;
  color: #F2FFF6;
  margin-top: 20px; /* Add some space below the image */
}

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

.page-about__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  justify-content: center;
  gap: 20px;
}

/* General Section Styling */
.page-about__section {
  padding: 80px 0;
  background-color: #08160F; /* Default section background */
}

.page-about__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-about__section-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.page-about__subsection-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #F2FFF6;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Content Grid Layout */
.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-about__content-grid--reverse {
  grid-template-columns: 1fr 1fr; /* Default order */
}

.page-about__content-grid--reverse .page-about__image-block {
  order: 2; /* Reverse order for image on right */
}

.page-about__content-grid--reverse .page-about__text-block {
  order: 1; /* Reverse order for text on left */
}

.page-about__text-block p,
.page-about__value-list li {
  color: #A7D9B8; /* Secondary text color for paragraphs and list items */
  margin-bottom: 15px;
}

.page-about__value-list {
  list-style: none;
  padding: 0;
}

.page-about__value-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #F2FFF6; /* Main text color for list items */
}

.page-about__value-list li::before {
  content: '✓';
  color: #2AD16F; /* Green checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

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

/* Advantage Cards */
.page-about__advantage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.page-about__card {
  background-color: #11271B; /* Card background color */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__card-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-about__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-about__card p {
  color: #A7D9B8;
  font-size: 1rem;
}

/* Buttons */
.page-about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap; /* Prevent text wrapping on desktop */
  box-sizing: border-box;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6;
  border: none;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

.page-about__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Use a green from the gradient for contrast */
  border: 2px solid #2AD16F;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.page-about__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  color: #F2FFF6;
  border-color: #F2FFF6;
  transform: translateY(-2px);
}

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

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

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  position: relative;
  list-style: none; /* For details/summary */
}

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

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #2AD16F;
  margin-left: 15px;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  content: '−';
}

.page-about__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #A7D9B8;
}

/* Final CTA Section */
.page-about__cta-final-section {
  background-color: #0A4B2C; /* Deep Green for a strong contrast */
  text-align: center;
  padding: 100px 0;
}

.page-about__cta-final-content {
  max-width: 900px;
}