:root {
  --primary-color: #990000; /* Darker red for WCAG AA with white text */
  --secondary-color: #FFD700; /* Gold */
  --text-color-dark: #333333;
  --text-color-light: #FFFFFF;
  --background-light: #F9F9F9;
  --background-white: #FFFFFF;
  --accent-red: #CC0000; /* Original red for visual elements, but not for text on light backgrounds */
}

.page-bn-c-fishing-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark);
  line-height: 1.6;
}

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

.page-bn-c-fishing-guide section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-bn-c-fishing-guide section:nth-of-type(even) {
  background-color: var(--background-light);
}

.page-bn-c-fishing-guide h1,
.page-bn-c-fishing-guide h2,
.page-bn-c-fishing-guide h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-bn-c-fishing-guide h1 {
  font-size: 3.2em;
  color: var(--text-color-light);
}

.page-bn-c-fishing-guide h2 {
  font-size: 2.5em;
  margin-top: 40px;
  color: var(--accent-red);
}

.page-bn-c-fishing-guide h3 {
  font-size: 1.8em;
  color: var(--text-color-dark);
}

.page-bn-c-fishing-guide p {
  margin-bottom: 15px;
  font-size: 1.1em;
  text-align: justify;
}

.page-bn-c-fishing-guide .text-center {
  text-align: center;
}

.page-bn-c-fishing-guide .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-bn-c-fishing-guide .cta-button:hover {
  background: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-bn-c-fishing-guide .cta-button.large {
  padding: 18px 50px;
  font-size: 1.4em;
}

/* Hero Section */
.page-bn-c-fishing-guide .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #a80000 100%); /* Slightly darker red for background gradient */
  color: var(--text-color-light);
  overflow: hidden;
}

.page-bn-c-fishing-guide .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-fishing-guide .hero-image {
  width: 100%;
  margin-bottom: 30px;
  z-index: 1;
}

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

.page-bn-c-fishing-guide .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for text readability */
}

.page-bn-c-fishing-guide .hero-content h1 {
  margin-bottom: 15px;
  font-size: 3.5em;
  line-height: 1.2;
  color: var(--text-color-light);
}

.page-bn-c-fishing-guide .hero-content p {
  font-size: 1.3em;
  margin-bottom: 20px;
  color: var(--text-color-light);
}

/* Game Types Grid */
.page-bn-c-fishing-guide .game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-bn-c-fishing-guide .game-card {
  background: var(--background-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-bn-c-fishing-guide .game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-bn-c-fishing-guide .game-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-bn-c-fishing-guide .game-card h3 {
  margin: 20px 15px 10px;
  font-size: 1.5em;
  color: var(--primary-color);
}

.page-bn-c-fishing-guide .game-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bn-c-fishing-guide .game-card h3 a:hover {
  color: var(--accent-red);
}

.page-bn-c-fishing-guide .game-card p {
  padding: 0 15px 20px;
  font-size: 1em;
  color: var(--text-color-dark);
  text-align: center;
}

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

.page-bn-c-fishing-guide .strategy-item {
  background: var(--background-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-bn-c-fishing-guide .strategy-item:hover {
  transform: translateY(-5px);
}

.page-bn-c-fishing-guide .strategy-item .strategy-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-bn-c-fishing-guide .strategy-item h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--accent-red);
}

.page-bn-c-fishing-guide .strategy-item p,
.page-bn-c-fishing-guide .strategy-item ul {
  text-align: left;
  font-size: 1em;
  color: var(--text-color-dark);
}

.page-bn-c-fishing-guide .strategy-item ul {
  list-style-type: disc;
  margin-left: 20px;
}

.page-bn-c-fishing-guide .strategy-item li {
  margin-bottom: 8px;
}

/* Features Section */
.page-bn-c-fishing-guide .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-bn-c-fishing-guide .feature-item {
  background: var(--background-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-bn-c-fishing-guide .feature-item .feature-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-bn-c-fishing-guide .feature-item h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--accent-red);
}

.page-bn-c-fishing-guide .feature-item p {
  font-size: 1em;
  color: var(--text-color-dark);
  text-align: center;
}

/* Promotions Section */
.page-bn-c-fishing-guide .promotion-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-bn-c-fishing-guide .promotion-list li {
  background: var(--background-white);
  border-left: 5px solid var(--secondary-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-bn-c-fishing-guide .promotion-list li strong {
  color: var(--primary-color);
  font-size: 1.2em;
  margin-bottom: 10px;
}

.page-bn-c-fishing-guide .promotion-list li a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-bn-c-fishing-guide .promotion-list li a:hover {
  text-decoration: underline;
}

.page-bn-c-fishing-guide .promotion-list .promotion-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-top: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-bn-c-fishing-guide .safety-item {
  background: var(--background-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-bn-c-fishing-guide .safety-item .safety-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-bn-c-fishing-guide .safety-item h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--accent-red);
}

.page-bn-c-fishing-guide .safety-item p {
  font-size: 1em;
  color: var(--text-color-dark);
  text-align: center;
}

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--primary-color);
  color: var(--text-color-light);
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: var(--text-color-light);
  text-align: left;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--text-color-light);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: var(--background-white);
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 5px 5px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed to fit content */
  padding: 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-color-dark);
  text-align: left;
}

.page-bn-c-fishing-guide .faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-bn-c-fishing-guide .faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c-fishing-guide h1 {
    font-size: 2.8em;
  }
  .page-bn-c-fishing-guide h2 {
    font-size: 2em;
  }
  .page-bn-c-fishing-guide h3 {
    font-size: 1.5em;
  }
  .page-bn-c-fishing-guide .hero-content p {
    font-size: 1.1em;
  }
  .page-bn-c-fishing-guide .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-bn-c-fishing-guide .cta-button.large {
    padding: 15px 40px;
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-bn-c-fishing-guide section {
    padding: 40px 0;
  }
  .page-bn-c-fishing-guide .container {
    padding: 0 15px;
  }
  .page-bn-c-fishing-guide h1 {
    font-size: 2.2em;
  }
  .page-bn-c-fishing-guide h2 {
    font-size: 1.8em;
  }
  .page-bn-c-fishing-guide h3 {
    font-size: 1.3em;
  }
  .page-bn-c-fishing-guide p {
    font-size: 1em;
  }
  .page-bn-c-fishing-guide .hero-section {
    padding: 60px 15px;
  }
  .page-bn-c-fishing-guide .hero-image img {
    border-radius: 8px;
  }
  .page-bn-c-fishing-guide .hero-content {
    padding: 15px;
  }
  .page-bn-c-fishing-guide .hero-content h1 {
    font-size: 2.5em;
  }
  .page-bn-c-fishing-guide .hero-content p {
    font-size: 1em;
  }
  .page-bn-c-fishing-guide .game-types-grid,
  .page-bn-c-fishing-guide .strategy-grid,
  .page-bn-c-fishing-guide .features-grid,
  .page-bn-c-fishing-guide .safety-grid {
    grid-template-columns: 1fr;
  }
  .page-bn-c-fishing-guide .game-card .card-image,
  .page-bn-c-fishing-guide .strategy-item .strategy-icon,
  .page-bn-c-fishing-guide .feature-item .feature-icon,
  .page-bn-c-fishing-guide .safety-item .safety-icon {
    width: 120px;
    height: 120px;
  }
  .faq-question {
    padding: 15px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px;
  }
  .page-bn-c-fishing-guide .promotion-list .promotion-image {
    max-width: 100%;
  }
}