.page-bnc {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-bnc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #1a1a2e; /* Ensure background for contrast */
  color: #ffffff;
  text-align: center;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-bnc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-bnc__hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.page-bnc__main-title {
  font-size: clamp(2em, 3.5vw, 3em);
  font-weight: 700;
  color: #26A9E0; /* Brand color for H1 */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-bnc__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-bnc__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-bnc__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-bnc__btn-primary:hover {
  background-color: #1e87c0;
  transform: translateY(-2px);
}

.page-bnc__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-bnc__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-bnc__section {
  padding: 40px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-bnc__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-bnc__light-bg {
  background-color: #ffffff;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-bnc__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-bnc__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: inherit; /* Inherit color from parent section */
}

.page-bnc__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: inherit; /* Inherit color from parent section */
}

.page-bnc__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 1.7;
  color: inherit; /* Inherit color from parent section */
}

.page-bnc__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-bnc__button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

.page-bnc__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 15px 20px;
  color: #ffffff;
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: #ffffff;
}

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

.page-bnc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-bnc__faq-answer {
  padding-top: 10px;
  font-size: 0.95em;
  line-height: 1.7;
  color: #f0f0f0;
}

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

  .page-bnc__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* body handles --header-offset */
  }

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

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

  .page-bnc__cta-button,
  .page-bnc a[class*="button"],
  .page-bnc a[class*="btn"] {
    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-bnc__button-group {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-bnc__section,
  .page-bnc__card,
  .page-bnc__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .page-bnc__video-section,
  .page-bnc__video-container,
  .page-bnc__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

  .page-bnc__sub-title {
    font-size: 1.4em;
  }

  .page-bnc__faq-item {
    padding: 10px 15px;
  }

  .page-bnc__faq-question {
    font-size: 1.1em;
  }
}