.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-top: 10px; /* Small top padding for the first section */
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 40px; /* Space below hero content */
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height */
}

.page-about__hero-content {
  position: relative;
  z-index: 10;
  padding: 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content slightly up over the image for better visual flow */
  background: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__main-title {
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-about__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-about__section:last-of-type {
  border-bottom: none;
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #22C768; /* Auxiliary Color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-about__subsection-title {
  font-size: 1.8em;
  color: #22C768; /* Auxiliary Color */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #11A84E; /* Primary Color */
  padding-left: 15px;
}

.page-about p {
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-about a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about a:hover {
  color: #2AD16F; /* Lighter green from button gradient */
  text-decoration: underline;
}

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

.page-about__list-item {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__product-list {
  list-style-type: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-about__product-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-about__product-item strong {
  color: #F2C14E; /* Gold */
  display: block;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-about__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__image--left {
  float: left;
  width: 45%;
  margin-right: 30px;
}

.page-about__image--right {
  float: right;
  width: 45%;
  margin-left: 30px;
}

.page-about__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

/* Clearfix for floated images */
.page-about__section::after {
  content: "";
  display: table;
  clear: both;
}

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

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-about__faq-item[open] > .page-about__faq-question {
  background-color: #11A84E; /* Primary Color */
}

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

.page-about__faq-qtext {
  flex-grow: 1;
  color: #F2FFF6; /* Text Main */
}

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-about__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-content {
    margin-top: -80px;
  }

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

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

  .page-about__image--left,
  .page-about__image--right {
    width: 100%;
    float: none;
    margin: 30px 0;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

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

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

  .page-about__intro-text {
    font-size: 1em;
  }

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

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

  .page-about__section-title {
    font-size: 1.8em;
  }

  .page-about__subsection-title {
    font-size: 1.3em;
  }

  .page-about__product-list {
    grid-template-columns: 1fr;
  }

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

  /* Ensure all containers for images/buttons/videos are responsive */
  .page-about__hero-section,
  .page-about__section,
  .page-about__container,
  .page-about__hero-content,
  .page-about__product-item,
  .page-about__faq-item,
  .page-about__cta-button,
  .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;
  }

  .page-about__cta-button {
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-about__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

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

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