/* style/bnc.css */

/* Global styles for the page-bnc scope */
.page-bnc {
  color: #F2FFF6; /* Text Main for dark background */
  background-color: #08160F; /* Background color from custom palette */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Section base styles */
.page-bnc__section {
  padding: 60px 20px;
  text-align: center;
}

/* Specific section background colors */
.page-bnc__dark-bg {
  background-color: #08160F; /* Ensure dark background */
  color: #F2FFF6; /* Light text for dark background */
}

/* Hero Section */
.page-bnc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Center content vertically if space allows */
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden; /* Ensure no overflow */
}

.page-bnc__hero-image {
  width: 100%;
  max-width: 1920px; /* Max width for hero image */
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 30px; /* Space between image and content */
}

.page-bnc__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1; /* Ensure content is above any background elements */
  text-align: center;
}

.page-bnc__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-bnc__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.page-bnc__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  min-width: 200px; /* Ensure buttons are not too small */
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

.page-bnc__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-bnc__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-bnc__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2C14E; /* Gold color */
  border: 2px solid #2E7A4E; /* Border color */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-bnc__btn-secondary:hover {
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Container for content */
.page-bnc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Add some padding to prevent content sticking to edges */
  box-sizing: border-box;
}

/* Section titles */
.page-bnc__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem); /* Responsive font size */
  color: #F2C14E; /* Gold color for section titles */
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.3;
}

/* Text blocks */
.page-bnc__text-block {
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: left;
}

/* Lists */
.page-bnc__list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  text-align: left;
}

.page-bnc__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
}

.page-bnc__list-item::before {
  content: '★'; /* Star bullet point */
  position: absolute;
  left: 0;
  color: #F2C14E; /* Gold color for bullet */
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

/* Image content within sections */
.page-bnc__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-bnc__faq-section {
  background-color: #11271B; /* Card BG for FAQ section */
  color: #F2FFF6; /* Text Main */
}

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

.page-bnc__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-bnc__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  list-style: none; /* Remove default marker */
}

.page-bnc__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for webkit browsers */
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

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

.page-bnc__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: left;
}

/* Conclusion Section */
.page-bnc__conclusion-section {
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Text Main */
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-bnc__section {
    padding: 40px 15px;
  }

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

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

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

  .page-bnc__cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
    padding: 0 15px;
  }

  .page-bnc__btn-primary,
  .page-bnc__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Mobile image responsiveness */
  .page-bnc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile container responsiveness for image/video/button containers */
  .page-bnc__section,
  .page-bnc__card,
  .page-bnc__container,
  .page-bnc__hero-section,
  .page-bnc__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Ensure hero section top padding is small */
  .page-bnc__hero-section {
    padding-top: 10px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-bnc__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

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

/* Desktop specific rule for video container (general rule based on prompt, even if no video in HTML) */
.page-bnc__video-container {
  width: 100%; /* Ensure desktop video container is 100% width */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}