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

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

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 40px; /* Space for content below image */
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-about__hero-content {
  position: relative; /* Ensure content is below the image in normal flow */
  padding: 30px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly for visual effect, but not covering text on image */
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em); /* Responsive font size for H1 */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.page-about__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  border-radius: 2px;
}

.page-about__subsection-title {
  font-size: 1.8em;
  color: #F2C14E; /* Gold */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__text-block {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

.page-about__list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 900px;
  text-align: left;
}

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

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

.page-about__list-item strong {
  color: #F2FFF6; /* Text Main */
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Invert gradient on hover */
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Brighter green */
  border: 2px solid #2AD16F; /* Brighter green border */
  box-shadow: none;
}

.page-about__btn-secondary:hover {
  background-color: #2AD16F; /* Brighter green */
  color: #08160F; /* Dark background color */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-about__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too wide */
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Minimum size for content images */
  min-width: 200px; /* Minimum size for content images */
  display: block;
}

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

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

.page-about__team-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  margin: 30px auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum size for content images */
  min-width: 200px; /* Minimum size for content images */
}

.page-about__faq {
  padding-bottom: 60px;
}

.page-about__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  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;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  background-color: #0A4B2C; /* Deep Green */
}

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

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

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

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F; /* Brighter green */
  transition: transform 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to become cross */
}

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

.page-about__faq-answer p {
  margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-content {
    margin-top: -60px;
    padding: 25px 20px;
  }
  .page-about__main-title {
    font-size: clamp(1.8em, 4vw, 2.8em);
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__subsection-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-content {
    margin-top: -40px;
    padding: 20px 15px;
    border-radius: 10px;
  }
  .page-about__main-title {
    font-size: clamp(1.6em, 5vw, 2.2em);
  }
  .page-about__description {
    font-size: 1em;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__section-title::after {
    width: 60px;
  }
  .page-about__subsection-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  .page-about__text-block,
  .page-about__list-item,
  .page-about__card-text,
  .page-about__faq-answer {
    font-size: 0.95em;
  }
  .page-about__list-item {
    padding-left: 25px;
  }
  .page-about__list-item::before {
    font-size: 0.9em;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__why-choose .page-about__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__card {
    padding: 25px;
  }
  .page-about__card-title {
    font-size: 1.3em;
  }
  .page-about__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-about__faq-toggle {
    font-size: 1.3em;
  }

  /* Mobile responsive for images */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile responsive for containers */
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-content,
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about__cta-buttons,
  .page-about__button-group,
  .page-about__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure buttons wrap if in a group */
  .page-about__cta-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }
  /* Specific override for hero section content padding, as it has negative margin */
  .page-about__hero-content {
      padding-left: 15px;
      padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-about__hero-content {
    margin-top: -20px;
    padding: 15px 10px;
  }
  .page-about__main-title {
    font-size: clamp(1.4em, 6vw, 2em);
  }
  .page-about__description {
    font-size: 0.9em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__subsection-title {
    font-size: 1.2em;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    padding: 10px 20px;
    font-size: 0.95em;
  }
  .page-about__faq-question {
    font-size: 1em;
  }
}