.page-bnc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f0f2f5; /* From shared.css body background */
}

.page-bnc__section {
  padding: 60px 20px;
  background-color: #f0f2f5;
  color: #333333;
}

.page-bnc__section--dark-bg {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Custom text color for dark background */
}

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

.page-bnc__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #11A84E; /* Main brand color for titles */
}

.page-bnc__section--dark-bg .page-bnc__section-title {
  color: #F2C14E; /* Gold color for titles on dark background */
}

.page-bnc__content-block p {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-bnc__content-block a {
  color: #22C768;
  text-decoration: none;
}

.page-bnc__content-block a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-bnc__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 */
  background-color: #08160F;
  overflow: hidden;
}

.page-bnc__hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-bnc__hero-video-link {
  display: block;
  line-height: 0;
}

.page-bnc__hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.page-bnc__hero-content {
  text-align: center;
  max-width: 900px;
  color: #F2FFF6;
}

.page-bnc__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Clamp for responsive H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold for main title */
}

.page-bnc__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.7;
  color: #A7D9B8;
}

.page-bnc__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-bnc__cta-buttons--center {
  margin-top: 40px;
}

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-bnc__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button color */
  color: #F2FFF6; /* Custom text color */
  border: none;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-bnc__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-bnc__btn-secondary {
  background-color: transparent;
  color: #F2FFF6; /* Custom text color */
  border: 2px solid #22C768; /* Auxiliary color */
}

.page-bnc__btn-secondary:hover {
  background-color: #22C768;
  color: #08160F;
  transform: translateY(-3px);
}

.page-bnc__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-bnc__faq-list {
  margin-top: 40px;
}

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

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  font-size: 1.15em;
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
  list-style: none; /* For details/summary */
}

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

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

.page-bnc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E;
}

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

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

/* Responsive Styles */
@media (max-width: 768px) {
  .page-bnc {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-bnc__section {
    padding: 40px 15px;
  }

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

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

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

  .page-bnc__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-bnc__btn-primary,
  .page-bnc__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-bnc video,
  .page-bnc__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-bnc__hero-video-wrapper,
  .page-bnc__video-container,
  .page-bnc__video-wrapper,
  .page-bnc__section,
  .page-bnc__card,
  .page-bnc__container,
  .page-bnc__cta-buttons,
  .page-bnc__button-group,
  .page-bnc__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

  .page-bnc__faq-toggle {
    font-size: 1.2em;
  }

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