.page-bnc {
  font-family: Arial, sans-serif;
  color: var(--Text-Main); /* Default text color for the page */
  background-color: var(--background); /* Overall page background */
}

.page-bnc__hero-section {
  position: relative;
  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;
  background: var(--background);
  overflow: hidden;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.page-bnc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-bnc__hero-content {
  max-width: 900px;
  z-index: 1;
  color: var(--Text-Main);
}

.page-bnc__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  color: var(--Text-Main);
  margin-bottom: 20px;
}

.page-bnc__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--Text-Secondary);
  margin-bottom: 30px;
}

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

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  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%);
  color: #F2FFF6;
  border: none;
}

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

.page-bnc__btn-secondary {
  background: transparent;
  color: var(--Text-Main);
  border: 2px solid var(--Border);
}

.page-bnc__btn-secondary:hover {
  background: var(--Deep-Green);
  color: var(--Text-Main);
  transform: translateY(-2px);
}

.page-bnc__section {
  padding: 60px 20px;
  background-color: var(--background);
  color: var(--Text-Main);
}

.page-bnc__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: bold;
  color: var(--Text-Main);
  text-align: center;
  margin-bottom: 20px;
}

.page-bnc__section-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--Text-Secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-bnc__features-section .page-bnc__feature-grid,
.page-bnc__highlight-section .page-bnc__highlight-grid,
.page-bnc__promo-section .page-bnc__promo-grid,
.page-bnc__download-section .page-bnc__download-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-bnc__card {
  background-color: var(--Card-BG);
  border: 1px solid var(--Border);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--Text-Main);
}

.page-bnc__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-bnc__feature-image,
.page-bnc__highlight-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-bnc__feature-title,
.page-bnc__highlight-title,
.page-bnc__promo-title,
.page-bnc__download-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--Text-Main);
  margin-bottom: 15px;
}

.page-bnc__feature-text,
.page-bnc__highlight-text,
.page-bnc__promo-text,
.page-bnc__download-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--Text-Secondary);
}

.page-bnc__guide-section {
  background-color: var(--Deep-Green);
  color: var(--Text-Main);
}

.page-bnc__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-bnc__step-item {
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  background-color: var(--Card-BG);
  border: 1px solid var(--Border);
  color: var(--Text-Main);
}

.page-bnc__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.page-bnc__step-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--Text-Main);
  margin-bottom: 10px;
}

.page-bnc__step-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--Text-Secondary);
}

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

.page-bnc__download-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.page-bnc__faq-section {
  background-color: var(--background);
  color: var(--Text-Main);
}

.page-bnc__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-bnc__faq-item {
  background-color: var(--Card-BG);
  border: 1px solid var(--Border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--Text-Main);
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--Text-Main);
  cursor: pointer;
  background-color: var(--Deep-Green);
  border-bottom: 1px solid var(--Divider);
}

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

.page-bnc__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--Glow);
  margin-left: 15px;
}

.page-bnc__faq-item[open] .page-bnc__faq-toggle {
  content: '−';
}

.page-bnc__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--Text-Secondary);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-bnc__hero-content {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .page-bnc__hero-section {
    padding: 40px 15px;
  }

  .page-bnc__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

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

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

  .page-bnc__btn-primary,
  .page-bnc__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

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

  .page-bnc__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-bnc__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-bnc__feature-grid,
  .page-bnc__highlight-grid,
  .page-bnc__promo-grid,
  .page-bnc__download-platforms {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-bnc__card {
    padding: 20px;
  }

  .page-bnc__feature-image,
  .page-bnc__highlight-image {
    max-height: 150px;
  }

  .page-bnc__feature-title,
  .page-bnc__highlight-title,
  .page-bnc__promo-title,
  .page-bnc__download-title {
    font-size: 1.3rem;
  }

  .page-bnc__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-bnc__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.9rem;
  }

  /* Mobile image and video responsive adaptation */
  .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__section,
  .page-bnc__card,
  .page-bnc__container,
  .page-bnc__video-section,
  .page-bnc__video-container,
  .page-bnc__video-wrapper,
  .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__video-section {
    padding-top: 10px !important;
  }

  .page-bnc__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}