.page-fishing-games-strategy {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  line-height: 1.6;
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-fishing-games-strategy__hero-section {
  position: relative;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  text-align: center;
  background: linear-gradient(135deg, #26A9E0, #1a7bb0);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-fishing-games-strategy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-fishing-games-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games-strategy__btn-primary,
.page-fishing-games-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-fishing-games-strategy__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-fishing-games-strategy__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-fishing-games-strategy__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-fishing-games-strategy__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: #26A9E0; /* Brand color for section titles */
}

.page-fishing-games-strategy__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-fishing-games-strategy__introduction-section,
.page-fishing-games-strategy__strategy-section,
.page-fishing-games-strategy__expert-tips-section,
.page-fishing-games-strategy__faq-section {
  padding: 80px 0;
}

.page-fishing-games-strategy__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-fishing-games-strategy__light-bg {
  background-color: #1a1a1a; /* Slightly lighter than body for cards/sections */
  color: #ffffff;
}

.page-fishing-games-strategy__dark-section {
  background-color: #26A9E0; /* Brand color for a section background */
  color: #ffffff;
}

.page-fishing-games-strategy__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-fishing-games-strategy__text-content {
  flex: 2;
}

.page-fishing-games-strategy__image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games-strategy__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games-strategy__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-fishing-games-strategy__benefit-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-fishing-games-strategy__benefit-list li::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-fishing-games-strategy__inline-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games-strategy__inline-link:hover {
  text-decoration: underline;
}

.page-fishing-games-strategy__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-strategy__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-fishing-games-strategy__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card image display */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games-strategy__card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-fishing-games-strategy__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-fishing-games-strategy__strategy-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-fishing-games-strategy__item-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-fishing-games-strategy__strategy-list {
  list-style: disc;
  margin-left: 20px;
}

.page-fishing-games-strategy__strategy-list li {
  margin-bottom: 8px;
}

.page-fishing-games-strategy__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-fishing-games-strategy__cta-bottom p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #ffffff;
}

.page-fishing-games-strategy__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games-strategy__tip-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  height: 100%;
}

.page-fishing-games-strategy__faq-list {
  margin-top: 40px;
}

.page-fishing-games-strategy__faq-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games-strategy__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-fishing-games-strategy__faq-title {
  font-size: 1.2em;
  margin: 0;
  color: #ffffff;
}

.page-fishing-games-strategy__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-toggle {
  transform: rotate(45deg);
  color: #EA7C07;
}

.page-fishing-games-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  box-sizing: border-box;
}

.page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 20px !important;
}

.page-fishing-games-strategy__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-fishing-games-strategy__conclusion-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-strategy__cta-final {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-strategy__hero-title {
    font-size: 3em;
  }

  .page-fishing-games-strategy__section-title {
    font-size: 2em;
  }

  .page-fishing-games-strategy__sub-title {
    font-size: 1.5em;
  }

  .page-fishing-games-strategy__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games-strategy__image-content {
    order: -1; /* Image above text on smaller screens */
  }
}

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

  .page-fishing-games-strategy__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important;
    min-height: 400px;
  }

  .page-fishing-games-strategy__hero-title {
    font-size: 2.5em;
  }

  .page-fishing-games-strategy__hero-description {
    font-size: 1em;
  }

  .page-fishing-games-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games-strategy__btn-primary,
  .page-fishing-games-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-fishing-games-strategy__introduction-section,
  .page-fishing-games-strategy__game-types-section,
  .page-fishing-games-strategy__strategy-section,
  .page-fishing-games-strategy__expert-tips-section,
  .page-fishing-games-strategy__faq-section,
  .page-fishing-games-strategy__conclusion-section {
    padding: 60px 0;
  }

  .page-fishing-games-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-fishing-games-strategy__sub-title {
    font-size: 1.3em;
  }

  .page-fishing-games-strategy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games-strategy__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Ensure all img elements within content sections are responsive */
  .page-fishing-games-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-strategy__section,
  .page-fishing-games-strategy__card,
  .page-fishing-games-strategy__container,
  .page-fishing-games-strategy__content-wrapper,
  .page-fishing-games-strategy__grid-layout,
  .page-fishing-games-strategy__strategy-grid,
  .page-fishing-games-strategy__tips-grid,
  .page-fishing-games-strategy__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-fishing-games-strategy__card,
  .page-fishing-games-strategy__tip-card,
  .page-fishing-games-strategy__strategy-item {
    padding: 20px;
  }

  .page-fishing-games-strategy__faq-question {
    padding: 15px;
  }

  .page-fishing-games-strategy__faq-answer {
    padding: 0 15px;
  }

  .page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-strategy__hero-title {
    font-size: 2em;
  }

  .page-fishing-games-strategy__section-title {
    font-size: 1.5em;
  }
}