.page-bn-c {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A1A1A;
  line-height: 1.6;
}

.page-bn-c .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-bn-c h1, .page-bn-c h2, .page-bn-c h3, .page-bn-c h4, .page-bn-c h5, .page-bn-c h6 {
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-bn-c h1 {
  font-size: 3.2em;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-bn-c h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-bn-c h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-bn-c p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-bn-c a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bn-c a:hover {
  color: #FFF;
  text-decoration: underline;
}

.page-bn-c ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-bn-c li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

/* Hero Section */
.page-bn-c .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
  overflow: hidden;
}

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

.page-bn-c .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-bn-c .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-bn-c .hero-content p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.2em;
  color: #F0F0F0;
}

.page-bn-c .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-bn-c .cta-button:hover {
  background: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* General Section Styling */
.page-bn-c .introduction-section, .page-bn-c .guide-section, .page-bn-c .fish-weapon-section, .page-bn-c .strategy-section, .page-bn-c .promotions-section, .page-bn-c .security-support-section, .page-bn-c .faq-section, .page-bn-c .blog-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-bn-c .introduction-section {
  background-color: #222222;
}

.page-bn-c .guide-section {
  background-color: #1A1A1A;
}

.page-bn-c .fish-weapon-section {
  background-color: #222222;
}

.page-bn-c .strategy-section {
  background-color: #1A1A1A;
}

.page-bn-c .promotions-section {
  background-color: #222222;
}

.page-bn-c .security-support-section {
  background-color: #1A1A1A;
}

.page-bn-c .blog-section {
  background-color: #222222;
  border-bottom: none;
}

/* Feature Grid */
.page-bn-c .feature-grid, .page-bn-c .strategy-grid, .page-bn-c .promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-bn-c .feature-item, .page-bn-c .strategy-item, .page-bn-c .promotion-item {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .feature-item:hover, .page-bn-c .strategy-item:hover, .page-bn-c .promotion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-bn-c .feature-item img, .page-bn-c .strategy-item img, .page-bn-c .promotion-item img {
  max-width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-bn-c .feature-item h3, .page-bn-c .strategy-item h3, .page-bn-c .promotion-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
}

.page-bn-c .feature-item p, .page-bn-c .strategy-item p, .page-bn-c .promotion-item p {
  font-size: 1em;
  color: #CCCCCC;
}

/* Step-by-Step Guide */
.page-bn-c .step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-bn-c .step-item {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-bn-c .step-item img {
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-bn-c .step-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-top: 0;
}

.page-bn-c .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.page-bn-c .btn-small:hover {
  background: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

/* Content Rows (Fish & Weapon) */
.page-bn-c .content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}

.page-bn-c .content-row.reverse {
  flex-direction: row-reverse;
}

.page-bn-c .content-col {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.page-bn-c .content-col img {
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Promotions */
.page-bn-c .promotion-item strong {
  color: #FFD700;
  font-size: 1.2em;
}

.page-bn-c .btn-promo {
  display: inline-block;
  padding: 12px 30px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-bn-c .btn-promo:hover {
  background: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

/* Security & Support */
.page-bn-c .info-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-bn-c .info-block {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-bn-c .info-block img {
  max-width: 100%;
  height: 200px; /* Adjusted to meet min size 200x200 */
  object-fit: contain; /* Use contain for icons/logos */
  margin-bottom: 20px;
}

.page-bn-c .btn-contact {
  display: inline-block;
  padding: 12px 30px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-bn-c .btn-contact:hover {
  background: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

/* FAQ Section */
.page-bn-c .faq-list {
  margin-top: 40px;
}

.page-bn-c .faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.page-bn-c .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2A2A2A;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-bn-c .faq-question:hover {
  background: #3A3A3A;
}

.page-bn-c .faq-question h3 {
  margin: 0;
  color: #FFD700;
  font-size: 1.3em;
  flex-grow: 1;
}

.page-bn-c .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-bn-c .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-bn-c .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #1A1A1A;
  color: #CCCCCC;
}

.page-bn-c .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to accommodate content */
  padding: 25px;
}

.page-bn-c .faq-answer p {
  margin-bottom: 10px;
}

/* Blog Section */
.page-bn-c .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-bn-c .blog-post-card {
  background-color: #2A2A2A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-bn-c .blog-post-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-bn-c .blog-post-card h3 {
  font-size: 1.4em;
  margin: 20px 20px 10px 20px;
  line-height: 1.3;
}

.page-bn-c .blog-post-card h3 a {
  color: #FFD700;
}

.page-bn-c .blog-post-card p {
  font-size: 1em;
  color: #CCCCCC;
  padding: 0 20px;
  margin-bottom: 15px;
}

.page-bn-c .blog-post-card .post-date {
  display: block;
  font-size: 0.9em;
  color: #888888;
  padding: 0 20px 20px 20px;
}

.page-bn-c .btn-view-all {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 15px 35px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-bn-c .btn-view-all:hover {
  background: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bn-c h1 {
    font-size: 2.8em;
  }
  .page-bn-c h2 {
    font-size: 2.2em;
  }
  .page-bn-c .hero-content p {
    font-size: 1.1em;
  }
  .page-bn-c .cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-bn-c .content-col img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .page-bn-c .container {
    padding: 0 15px;
  }
  .page-bn-c h1 {
    font-size: 2.2em;
  }
  .page-bn-c h2 {
    font-size: 1.8em;
  }
  .page-bn-c h3 {
    font-size: 1.5em;
  }
  .page-bn-c p, .page-bn-c li {
    font-size: 1em;
  }
  .page-bn-c .hero-section, .page-bn-c .introduction-section, .page-bn-c .guide-section, .page-bn-c .fish-weapon-section, .page-bn-c .strategy-section, .page-bn-c .promotions-section, .page-bn-c .security-support-section, .page-bn-c .faq-section, .page-bn-c .blog-section {
    padding: 40px 0;
  }
  .page-bn-c .hero-image img {
    border-radius: 8px;
  }
  .page-bn-c .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-bn-c .feature-grid, .page-bn-c .step-by-step, .page-bn-c .strategy-grid, .page-bn-c .promotion-grid, .page-bn-c .info-blocks, .page-bn-c .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-bn-c .content-row {
    flex-direction: column;
  }
  .page-bn-c .content-row.reverse {
    flex-direction: column;
  }
  .page-bn-c .content-col {
    padding: 10px;
  }
  .page-bn-c .content-col img {
    height: 300px;
    margin-bottom: 20px;
  }
  .page-bn-c .faq-question {
    padding: 15px 20px;
  }
  .page-bn-c .faq-answer {
    padding: 15px 20px;
  }
  .page-bn-c .faq-question h3 {
    font-size: 1.1em;
  }
  .page-bn-c .faq-toggle {
    font-size: 1.8em;
  }
  .page-bn-c .blog-post-card h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-bn-c h1 {
    font-size: 1.8em;
  }
  .page-bn-c h2 {
    font-size: 1.5em;
  }
  .page-bn-c h3 {
    font-size: 1.3em;
  }
  .page-bn-c .hero-content p {
    font-size: 0.95em;
  }
  .page-bn-c .cta-button {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-bn-c .feature-item img, .page-bn-c .step-item img, .page-bn-c .promotion-item img, .page-bn-c .blog-post-card img {
    height: 200px;
  }
  .page-bn-c .content-col img {
    height: 250px;
  }
  .page-bn-c .info-block img {
    height: 150px;
  }
  .page-bn-c .faq-question h3 {
    font-size: 1em;
  }
  .page-bn-c .faq-toggle {
    font-size: 1.5em;
  }
}