/* style/bnc.css */

/* Base styles for the page-bnc scope */
.page-bnc {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #FFFFFF;
  line-height: 1.6;
}

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

.page-bnc__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-bnc__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Dark background sections */
.page-bnc__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-bnc__light-text {
  color: #ffffff;
}

/* Light background sections */
.page-bnc__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Buttons */
.page-bnc__btn-primary,
.page-bnc__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-bnc__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-bnc__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

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

.page-bnc__btn-secondary:hover {
  background-color: #f0f8ff;
  color: #1e87c0;
  border-color: #1e87c0;
}

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

.page-bnc__cta-buttons--center {
  text-align: center;
}

/* Hero Section */
.page-bnc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

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

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

.page-bnc__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

.page-bnc__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #ffffff;
}

.page-bnc__hero-section .page-bnc__description {
  font-size: 1.25em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Intro Section */
.page-bnc__intro-section {
  padding: 80px 0;
}

/* Features Section */
.page-bnc__features-section {
  padding: 80px 0;
}

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

.page-bnc__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-bnc__feature-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-bnc__card-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-bnc__card-description {
  font-size: 1em;
  line-height: 1.6;
}

/* Guide Section */
.page-bnc__guide-section {
  padding: 80px 0;
}

.page-bnc__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-bnc__guide-list li {
  background-color: #f8f8f8;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.7;
  border-left: 5px solid #26A9E0;
}

.page-bnc__guide-list li strong {
  color: #26A9E0;
  font-size: 1.2em;
}

/* Promotions Section */
.page-bnc__promotions-section {
  padding: 80px 0;
}

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

.page-bnc__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-bnc__promo-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-bnc__promo-card .page-bnc__card-title {
  color: #EA7C07;
}

.page-bnc__promo-card .page-bnc__btn-primary {
  margin-top: 20px;
}

/* Why Choose Us Section */
.page-bnc__why-choose-us {
  padding: 80px 0;
}

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

.page-bnc__reason-item {
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-bnc__reason-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-bnc__reason-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-bnc__reason-description {
  font-size: 1em;
  line-height: 1.6;
}

/* FAQ Section */
.page-bnc__faq-section {
  padding: 80px 0;
}

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

.page-bnc__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-bnc__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #26A9E0;
}

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

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

.page-bnc__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-bnc__faq-item[open] .page-bnc__faq-toggle {
  transform: rotate(45deg);
}

.page-bnc__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

/* Call to Action Bottom */
.page-bnc__cta-bottom {
  padding: 60px 20px;
  text-align: center;
}

.page-bnc__cta-bottom .page-bnc__description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 40px auto;
}

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

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

  .page-bnc__container {
    padding: 0 15px;
  }

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

  .page-bnc__main-title {
    font-size: 2.2em;
  }

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

  .page-bnc__section-title {
    font-size: 1.8em;
    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;
  }

  .page-bnc__features-grid,
  .page-bnc__promotions-grid,
  .page-bnc__reasons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-bnc__intro-section,
  .page-bnc__features-section,
  .page-bnc__guide-section,
  .page-bnc__promotions-section,
  .page-bnc__why-choose-us,
  .page-bnc__faq-section,
  .page-bnc__cta-bottom {
    padding: 50px 0;
  }

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

  .page-bnc__hero-image-wrapper,
  .page-bnc__feature-card,
  .page-bnc__promo-card,
  .page-bnc__reason-item,
  .page-bnc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-bnc__faq-item summary {
    font-size: 1em;
  }

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

@media (max-width: 480px) {
  .page-bnc__main-title {
    font-size: 1.8em;
  }

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

  .page-bnc__hero-section .page-bnc__description {
    font-size: 0.95em;
  }
}