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

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

.page-bn-c-section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-bn-c-section:last-of-type {
  margin-bottom: 0;
}

.page-bn-c-section h2 {
  color: #8B0000; /* Deep Red for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  font-weight: bold;
  position: relative;
}

.page-bn-c-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-bn-c-section h3 {
  color: #8B0000; /* Deep Red for subtitles */
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-bn-c-section a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
}

.page-bn-c-section a:hover {
  text-decoration: underline;
  color: #DAA520; /* Darker Gold on hover */
}

/* 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-color: #1a1a1a; /* Dark background for hero */
}

.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;
}

.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: 8px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-bn-c-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff; /* White text on dark hero background */
}

.page-bn-c-hero-content h1 {
  font-size: 3.5em;
  color: #FFD700; /* Gold for hero title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-bn-c-hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-bn-c-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(45deg, #FFD700, #DAA520); /* Gold gradient */
  color: #8B0000; /* Deep Red text on gold button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #8B0000;
}

.page-bn-c-cta-button:hover {
  background: linear-gradient(45deg, #DAA520, #FFD700);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  color: #6a0000;
}

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

.page-bn-c-feature-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700; /* Gold accent */
}

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

.page-bn-c-feature-item h3 {
  color: #8B0000;
  font-size: 1.6em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-bn-c-feature-item p {
  font-size: 1em;
  color: #666;
}

.page-bn-c-feature-image {
  width: 100%;
  max-width: 400px; /* Example size, adjust as needed */
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

/* Steps List */
.page-bn-c-steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-bn-c-steps-list li {
  background-color: #fefefe;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 5px solid #FFD700; /* Gold accent */
}

.page-bn-c-steps-list li h3 {
  position: relative;
  padding-left: 50px;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-bn-c-steps-list li h3::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700; /* Gold step number */
  color: #8B0000; /* Deep Red text on gold */
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-bn-c-steps-list li p {
  font-size: 1.05em;
  color: #666;
  margin-left: 50px;
}

.page-bn-c-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #8B0000; /* Deep Red button */
  color: #FFD700; /* Gold text on deep red button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid #FFD700;
  margin-left: 50px;
}

.page-bn-c-button:hover {
  background-color: #6a0000; /* Darker Deep Red on hover */
  transform: translateY(-2px);
  color: #fff;
}

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

.page-bn-c-strategy-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid #8B0000; /* Deep Red accent */
}

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

.page-bn-c-strategy-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-bn-c-strategy-item p {
  font-size: 1em;
  color: #666;
}

.page-bn-c-strategy-image {
  width: 100%;
  max-width: 400px; /* Example size, adjust as needed */
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

/* Content Grid (Fish Types) */
.page-bn-c-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-bn-c-content-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700; /* Gold accent */
}

.page-bn-c-content-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-bn-c-content-item h3 {
  color: #8B0000;
  font-size: 1.6em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-bn-c-content-item p {
  font-size: 1em;
  color: #666;
}

.page-bn-c-content-image {
  width: 100%;
  max-width: 400px; /* Example size, adjust as needed */
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #8B0000; /* Deep Red for FAQ questions */
  font-weight: 600;
}

.faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700; /* Gold for toggle icon */
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #8B0000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 25px;
  border-top: 1px solid #eee;
}

.faq-answer p {
  margin: 0;
  color: #555;
  font-size: 1.05em;
}

/* Conclusion Section */
.page-bn-c-conclusion {
  text-align: center;
  background-color: #fefefe;
  padding: 80px 20px;
  border-top: 5px solid #FFD700;
}

.page-bn-c-conclusion h2 {
  color: #8B0000;
}

.page-bn-c-conclusion p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #444;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c-hero-content h1 {
    font-size: 2.8em;
  }

  .page-bn-c-hero-content p {
    font-size: 1.1em;
  }

  .page-bn-c-section h2 {
    font-size: 2em;
  }

  .page-bn-c-section h3 {
    font-size: 1.5em;
  }

  .page-bn-c-feature-item, .page-bn-c-strategy-item, .page-bn-c-content-item {
    padding: 25px;
  }

  .page-bn-c-steps-list li {
    padding: 25px;
  }

  .page-bn-c-steps-list li h3,
  .page-bn-c-steps-list li p,
  .page-bn-c-button {
    margin-left: 40px;
  }
}

@media (max-width: 768px) {
  .page-bn-c-hero-section {
    padding: 40px 15px;
  }

  .page-bn-c-hero-content h1 {
    font-size: 2.2em;
  }

  .page-bn-c-hero-content p {
    font-size: 1em;
  }

  .page-bn-c-cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }

  .page-bn-c-section {
    padding: 40px 0;
  }

  .page-bn-c-section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-bn-c-section h3 {
    font-size: 1.3em;
  }

  .page-bn-c-feature-grid, .page-bn-c-strategy-grid, .page-bn-c-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-bn-c-steps-list li {
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .page-bn-c-steps-list li h3 {
    padding-left: 0;
    margin-bottom: 10px;
  }

  .page-bn-c-steps-list li h3::before {
    position: static;
    margin-bottom: 10px;
  }

  .page-bn-c-steps-list li p,
  .page-bn-c-button {
    margin-left: 0;
  }

  .faq-question {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .faq-question h3 {
    margin-bottom: 10px;
    font-size: 1.1em;
  }
  
  .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
    font-size: 1.8em;
  }

  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-bn-c-hero-content h1 {
    font-size: 1.8em;
  }

  .page-bn-c-hero-content p {
    font-size: 0.95em;
  }

  .page-bn-c-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-bn-c-section h2 {
    font-size: 1.6em;
  }

  .page-bn-c-section h3 {
    font-size: 1.2em;
  }
}