/* style/bnc.css */

/* Base styles for the page content, ensuring contrast with the assumed dark body background */
.page-bnc {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-bnc h1, .page-bnc h2, .page-bnc h3 {
  color: #F2FFF6; /* Custom Text Main for headings */
  margin-bottom: 20px;
}

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

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

.page-bnc__section-title {
  font-size: clamp(28px, 4vw, 42px); /* Responsive font size for H2 */
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Hero Section */
.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 */
  overflow: hidden;
  box-sizing: border-box;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px; /* Space between image and content */
}

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

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

.page-bnc__main-title {
  font-size: clamp(36px, 5vw, 56px); /* Responsive font size for H1 */
  font-weight: 900;
  line-height: 1.2;
  color: #F2C14E; /* Custom Gold */
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.page-bnc__description {
  font-size: 1.2em;
  color: #F2FFF6; /* Custom Text Main */
  margin-bottom: 40px;
}

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

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
}

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

.page-bnc__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-bnc__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Lighter shade of primary for contrast */
  border: 2px solid #2AD16F;
}

.page-bnc__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Feature List */
.page-bnc__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-bnc__feature-item {
  background-color: #11271B; /* Custom Card BG */
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Custom Border */
}

.page-bnc__feature-title {
  color: #F2C14E; /* Custom Gold */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-bnc__feature-description {
  color: #A7D9B8; /* Custom Text Secondary */
}

/* Providers Grid */
.page-bnc__section--providers {
  background-color: #0A4B2C; /* Custom Deep Green */
}

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

.page-bnc__card {
  background-color: #11271B; /* Custom Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
  display: flex;
  flex-direction: column;
  border: 1px solid #2E7A4E; /* Custom Border */
}

.page-bnc__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-bnc__card-title {
  font-size: 1.4em;
  color: #F2C14E; /* Custom Gold */
  padding: 20px 20px 10px;
}

.page-bnc__card-text {
  color: #A7D9B8; /* Custom Text Secondary */
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-bnc__btn-text {
  display: inline-block;
  margin: 0 20px 20px;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button */
  color: #F2FFF6; /* Custom Text Main */
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.page-bnc__btn-text:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Guide Steps */
.page-bnc__section--guide {
  background-color: #11A84E; /* Custom Dark BG */
  color: #F2FFF6; /* Custom Text Main */
}

.page-bnc__section--guide .page-bnc__section-title,
.page-bnc__section--guide .page-bnc__text-block {
  color: #F2FFF6;
}

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

.page-bnc__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  padding-left: 80px; /* Space for step number */
}

.page-bnc__step-number {
  position: absolute;
  left: 20px;
  top: 25px;
  width: 40px;
  height: 40px;
  background-color: #F2C14E; /* Custom Gold */
  color: #08160F; /* Dark text for contrast */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-bnc__step-title {
  color: #F2C14E; /* Custom Gold */
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-bnc__step-description {
  color: #F2FFF6; /* Custom Text Main */
}

.page-bnc__tips {
  margin-top: 60px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-bnc__tips-title {
  color: #F2C14E; /* Custom Gold */
  font-size: 1.6em;
  margin-bottom: 20px;
}

.page-bnc__tips-list {
  list-style: none;
  padding: 0;
}

.page-bnc__tips-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  color: #F2FFF6; /* Custom Text Main */
}

.page-bnc__tips-list li::before {
  content: '✓';
  color: #57E38D; /* Custom Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-bnc__tips-text strong {
  color: #F2C14E; /* Custom Gold */
}

/* Promotions Section */
.page-bnc__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-bnc__promo-card {
  background-color: #11271B; /* Custom Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
  display: flex;
  flex-direction: column;
  border: 1px solid #2E7A4E; /* Custom Border */
}

.page-bnc__promo-image {
  width: 100%;
  height: 220px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
}

.page-bnc__promo-title {
  font-size: 1.4em;
  color: #F2C14E; /* Custom Gold */
  padding: 20px 20px 10px;
}

.page-bnc__promo-description {
  color: #A7D9B8; /* Custom Text Secondary */
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-bnc__cta-bottom {
  margin-top: 50px;
}

.page-bnc__cta-bottom .page-bnc__btn-primary {
  font-size: 1.2em;
  padding: 18px 35px;
}

/* Why Choose Section */
.page-bnc__section--why-choose {
  background-color: #0A4B2C; /* Custom Deep Green */
}

.page-bnc__section--why-choose .page-bnc__section-title,
.page-bnc__section--why-choose .page-bnc__text-block {
  color: #F2FFF6;
}

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

.page-bnc__advantage-item {
  background-color: #11271B; /* Custom Card BG */
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Custom Border */
}

.page-bnc__advantage-title {
  color: #F2C14E; /* Custom Gold */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-bnc__advantage-description {
  color: #A7D9B8; /* Custom Text Secondary */
}

/* FAQ Section */
.page-bnc__section--faq {
  background-color: #08160F; /* Custom Background */
}

.page-bnc__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Custom Text Main */
  cursor: pointer;
  background-color: transparent;
  border-bottom: 1px solid #1E3A2A; /* Custom Divider */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-bnc__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

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

.page-bnc__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  color: #F2C14E; /* Custom Gold */
}

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

/* Final CTA Section */
.page-bnc__section--cta-final {
  background-color: #11A84E; /* Custom Dark BG */
  padding: 80px 0;
}

.page-bnc__section--cta-final .page-bnc__section-title,
.page-bnc__section--cta-final .page-bnc__text-block {
  color: #F2FFF6;
}

.page-bnc__btn-large {
  padding: 20px 40px;
  font-size: 1.3em;
  border-radius: 35px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-bnc__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }
  .page-bnc__section {
    padding: 40px 0;
  }
  .page-bnc__main-title {
    font-size: clamp(32px, 5vw, 48px);
  }
  .page-bnc__description {
    font-size: 1.1em;
  }
  .page-bnc__feature-list,
  .page-bnc__card-grid,
  .page-bnc__guide-steps,
  .page-bnc__promo-cards,
  .page-bnc__advantage-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-bnc {
    font-size: 15px;
    line-height: 1.5;
  }
  .page-bnc__container {
    padding: 0 15px;
  }
  .page-bnc__section {
    padding: 30px 0;
  }
  .page-bnc__section-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 20px;
  }
  .page-bnc__text-block {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-bnc__hero-image-wrapper {
    margin-bottom: 30px;
  }
  .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;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-bnc__card-image {
    height: 180px;
  }
  .page-bnc__promo-image {
    height: 180px;
  }
  .page-bnc__step-item {
    padding-left: 70px;
  }
  .page-bnc__step-number {
    left: 15px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-bnc__tips {
    padding: 20px;
  }
  .page-bnc__tips-title {
    font-size: 1.4em;
  }
  .page-bnc__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-bnc__faq-answer {
    padding: 0 20px 15px;
    font-size: 1em;
  }
  .page-bnc__btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* Mobile image and video responsiveness */
  .page-bnc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .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;
  }
  /* Ensure buttons wrap if they are in a flex row */
  .page-bnc__cta-buttons,
  .page-bnc__button-group {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-bnc__main-title {
    font-size: clamp(28px, 7vw, 40px);
  }
  .page-bnc__btn-primary,
  .page-bnc__btn-secondary {
    font-size: 0.95em;
    padding: 10px 15px;
  }
  .page-bnc__feature-item,
  .page-bnc__card,
  .page-bnc__step-item,
  .page-bnc__promo-card,
  .page-bnc__advantage-item {
    padding: 20px;
  }
  .page-bnc__step-item {
    padding-left: 60px;
  }
  .page-bnc__step-number {
    left: 10px;
    top: 15px;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }
  .page-bnc__faq-question {
    font-size: 1em;
  }
  .page-bnc__btn-large {
    font-size: 1em;
    padding: 12px 25px;
  }
}