/* style/fishing-games-strategy.css */
.page-fishing-games-strategy {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #FFFFFF;
}

.page-fishing-games-strategy__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-fishing-games-strategy__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  min-height: 500px;
  overflow: hidden;
}

.page-fishing-games-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-fishing-games-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-fishing-games-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-fishing-games-strategy__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff; /* White text on dark background */
}

.page-fishing-games-strategy__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for description */
}

.page-fishing-games-strategy__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  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;
  text-align: center;
}

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

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

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

.page-fishing-games-strategy__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87b9;
  border-color: #1e87b9;
}

.page-fishing-games-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.7;
  font-size: 1.1em;
}

.page-fishing-games-strategy__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-fishing-games-strategy__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-fishing-games-strategy__paragraph {
  margin-bottom: 20px;
  color: #333333;
}

.page-fishing-games-strategy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-fishing-games-strategy__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-fishing-games-strategy__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-fishing-games-strategy__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it behaves as block for max-width */
  margin: 0 auto;
}

.page-fishing-games-strategy__cta-section {
  text-align: center;
  background-color: #f5f5f5;
  padding: 40px 20px;
  border-radius: 10px;
  margin-top: 50px;
}

.page-fishing-games-strategy__cta-text {
  font-size: 1.4em;
  color: #333333;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-fishing-games-strategy__faq-container {
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.page-fishing-games-strategy__faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 1.2em;
  color: #333333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games-strategy__faq-question:hover {
  color: #26A9E0;
}

.page-fishing-games-strategy__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: inherit;
}

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

.page-fishing-games-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-answer {
  max-height: 1000px !important; /* Use !important to ensure it expands */
  padding: 15px;
}

.page-fishing-games-strategy__faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
}

.page-fishing-games-strategy__final-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #eaf7fd; /* Light blue background */
  border-radius: 10px;
}

.page-fishing-games-strategy__final-cta .page-fishing-games-strategy__cta-text {
  color: #26A9E0;
}

.page-fishing-games-strategy__final-cta .page-fishing-games-strategy__btn-primary,
.page-fishing-games-strategy__final-cta .page-fishing-games-strategy__btn-secondary {
  margin: 10px;
}

.page-fishing-games-strategy__promo-banner {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  margin-top: 60px;
}

.page-fishing-games-strategy__promo-banner .page-fishing-games-strategy__promo-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-fishing-games-strategy__promo-banner .page-fishing-games-strategy__promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-fishing-games-strategy__promo-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-fishing-games-strategy__promo-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-fishing-games-strategy__promo-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

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

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

  .page-fishing-games-strategy__promo-title {
    font-size: 2.4em;
  }
}

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

  .page-fishing-games-strategy__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }

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

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

  .page-fishing-games-strategy__hero-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__content-area,
  .page-fishing-games-strategy__cta-section,
  .page-fishing-games-strategy__faq-container,
  .page-fishing-games-strategy__final-cta,
  .page-fishing-games-strategy__promo-banner {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

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

  .page-fishing-games-strategy__content-image,
  .page-fishing-games-strategy__hero-image,
  .page-fishing-games-strategy__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-strategy__faq-question {
    font-size: 1.1em;
    padding: 15px 0;
  }

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

  .page-fishing-games-strategy__promo-title {
    font-size: 1.8em;
  }

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

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

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

  .page-fishing-games-strategy__promo-title {
    font-size: 1.6em;
  }
}