.page-bnc {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

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

.page-bnc__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.5);
}

.page-bnc__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-bnc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
  overflow: hidden;
}

.page-bnc__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-bnc__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-bnc__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-bnc__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-bnc__main-title {
  font-size: clamp(32px, 5vw, 50px);
  color: #FFF6D6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(255, 246, 214, 0.7);
}

.page-bnc__hero-description {
  font-size: 18px;
  color: #FFD36B; /* Glow */
  max-width: 800px;
  margin: 0 auto 30px;
  text-shadow: 0 0 5px rgba(255, 211, 107, 0.4);
}

.page-bnc__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #0A0A0A; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-bnc__cta-button:hover {
  background: linear-gradient(180deg, #FFE699 0%, #F2C14E 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-bnc__intro-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

/* Features Section */
.page-bnc__features-section {
  padding: 80px 0;
  background-color: #111111; /* Card BG */
}

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

.page-bnc__feature-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-bnc__feature-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-bnc__card-title {
  font-size: 22px;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
  font-weight: 700;
}

.page-bnc__card-description {
  font-size: 16px;
  color: #FFF6D6; /* Text Main */
}

.page-bnc__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Download Guide Section */
.page-bnc__download-guide-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

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

.page-bnc__download-steps li {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-bnc__step-title {
  font-size: 24px;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
  font-weight: 600;
}

/* Benefits Section */
.page-bnc__benefits-section {
  padding: 80px 0;
  background-color: #111111; /* Card BG */
}

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

.page-bnc__benefit-item {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12; /* Border */
}

.page-bnc__benefit-title {
  font-size: 22px;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
  font-weight: 700;
}

.page-bnc__benefit-description {
  font-size: 16px;
  color: #FFF6D6; /* Text Main */
}

/* Promotions Section */
.page-bnc__promotions-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

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

.page-bnc__promo-list li {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-bnc__promo-title {
  font-size: 24px;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
  font-weight: 600;
}

/* FAQ Section */
.page-bnc__faq-section {
  padding: 80px 0;
  background-color: #111111; /* Card BG */
}

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

details.page-bnc__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #0A0A0A; /* Background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

details.page-bnc__faq-item summary.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF6D6; /* Text Main */
  font-weight: 600;
  font-size: 18px;
}

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

details.page-bnc__faq-item summary.page-bnc__faq-question:hover {
  background: #1A1A1A;
}

.page-bnc__faq-qtext {
  flex: 1;
  font-size: 17px;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E; /* Main color */
}

.page-bnc__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-bnc__faq-item .page-bnc__faq-answer {
  padding: 0 25px 20px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 10px 10px;
  color: #FFF6D6; /* Text Main */
  font-size: 16px;
}

/* Conclusion Section */
.page-bnc__conclusion-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
  text-align: center;
}

/* Global image responsiveness */
.page-bnc img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-bnc__container {
    padding: 20px 15px;
  }

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

  .page-bnc__main-title {
    font-size: 32px;
  }

  .page-bnc__hero-description {
    font-size: 16px;
  }

  .page-bnc__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-bnc__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-bnc__features-grid,
  .page-bnc__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-bnc__feature-card,
  .page-bnc__benefit-item,
  .page-bnc__download-steps li,
  .page-bnc__promo-list li {
    padding: 20px;
  }

  .page-bnc__card-title,
  .page-bnc__benefit-title,
  .page-bnc__step-title,
  .page-bnc__promo-title {
    font-size: 20px;
  }

  .page-bnc__text-block,
  .page-bnc__card-description,
  .page-bnc__benefit-description,
  .page-bnc__faq-answer p {
    font-size: 15px;
  }

  details.page-bnc__faq-item summary.page-bnc__faq-question {
    padding: 15px;
  }

  .page-bnc__faq-qtext {
    font-size: 16px;
  }

  .page-bnc__faq-toggle {
    font-size: 20px;
  }

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

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

  .page-bnc__hero-image,
  .page-bnc__feature-card img,
  .page-bnc__download-guide-section,
  .page-bnc__promotions-section,
  .page-bnc__faq-section,
  .page-bnc__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-bnc__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}