.page-about {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

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

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-about__hero-video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  display: block;
}

.page-about__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken video for text readability */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-about__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.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__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
}

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

.page-about__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-about__btn-secondary:hover {
  background: #2E7A4E; /* Border color */
  transform: translateY(-2px);
}

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

.page-about__about-us-intro {
  background-color: #08160F; /* Background */
}

.page-about__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.page-about__intro-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-about__grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-about__grid-layout {
    grid-template-columns: 1fr 1fr;
  }
  .page-about__grid-layout .page-about__image-wrapper {
    order: 2; /* Image on right */
  }
  .page-about__grid-layout .page-about__text-block {
    order: 1;
  }
}

.page-about__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-about__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-about__value-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-about__value-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__value-heading {
  color: #F2C14E; /* Gold */
  font-size: 1.2em;
  margin-bottom: 10px;
  display: block;
}

.page-about__value-item p {
  color: #A7D9B8; /* Text Secondary */
}

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

.page-about__why-choose-us .page-about__section-title {
  color: #57E38D; /* Glow */
}

.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: #08160F; /* Background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  border: 1px solid #2E7A4E; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-about__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #57E38D); /* Glow effect */
}

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

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

.page-about__product-highlight {
  color: #F2C14E; /* Gold */
  margin-top: 60px;
}

.page-about__product-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__product-item {
  background-color: #11271B; /* Card BG */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #2AD16F;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
}

.page-about__product-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 600;
}

.page-about__product-link:hover {
  text-decoration: underline;
}

.page-about__commitments .page-about__section-title {
  color: #F2C14E; /* Gold */
}

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

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

.page-about__commitment-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #F2C14E); /* Gold glow */
}

.page-about__commitment-item p {
  color: #A7D9B8; /* Text Secondary */
}

.page-about__text-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 500;
}

.page-about__text-link:hover {
  text-decoration: underline;
}

.page-about__partnership-opportunities {
  background-color: #08160F; /* Background */
}

.page-about__partnership-opportunities .page-about__section-title {
  color: #57E38D; /* Glow */
}

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

.page-about__card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  border: 1px solid #2E7A4E; /* Border color */
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-about__card h3 {
  color: #F2FFF6; /* Text Main */
  font-size: 1.3em;
  margin-bottom: 15px;
}

.page-about__card p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-about__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-about__contact-us .page-about__section-title {
  color: #F2C14E; /* Gold */
}

.page-about__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-about__contact-item {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
  margin-bottom: 10px;
}

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

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

.page-about__faq .page-about__section-title {
  color: #57E38D; /* Glow */
}

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

.page-about__faq-item {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  position: relative;
  user-select: none;
}

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

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

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

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

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

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

.page-about__faq-answer .page-about__btn-primary,
.page-about__faq-answer .page-about__btn-secondary {
  margin-top: 10px;
}

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

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

  .page-about__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

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

  .page-about__description {
    font-size: 1em;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    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;
  }

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

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

  .page-about__intro-text {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-about__grid-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  .page-about__grid-layout .page-about__image-wrapper,
  .page-about__grid-layout .page-about__text-block {
    order: unset; /* Reset order for mobile */
  }

  .page-about__image {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__value-list,
  .page-about__features-grid,
  .page-about__commitment-grid,
  .page-about__partnership-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-about__value-item,
  .page-about__feature-card,
  .page-about__commitment-item,
  .page-about__card {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about__product-list {
    padding: 0 15px;
  }

  .page-about__product-item {
    padding: 12px 15px;
    font-size: 0.95em;
  }

  .page-about__contact-list {
    padding: 0 15px;
  }

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

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

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

  /* Ensure all content containers are constrained */
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__grid-layout,
  .page-about__value-list,
  .page-about__features-grid,
  .page-about__commitment-grid,
  .page-about__partnership-grid,
  .page-about__product-list,
  .page-about__contact-list,
  .page-about__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Video responsiveness */
  .page-about__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__hero-video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 1.8em;
  }

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

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

  .page-about__hero-content {
    padding: 10px;
  }
}