/* style/strategy-tips-fishing-guide.css */
.page-strategy-tips-fishing-guide {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-strategy-tips-fishing-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-strategy-tips-fishing-guide__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a68 100%); /* Dark gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-strategy-tips-fishing-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-strategy-tips-fishing-guide__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E2E8F0;
}

.page-strategy-tips-fishing-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-strategy-tips-fishing-guide__cta-button:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-strategy-tips-fishing-guide__content-section {
  padding: 60px 0;
}

.page-strategy-tips-fishing-guide__section-bg-light {
  background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-strategy-tips-fishing-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  position: relative;
}

.page-strategy-tips-fishing-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-strategy-tips-fishing-guide__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-strategy-tips-fishing-guide__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E2E8F0;
}

.page-strategy-tips-fishing-guide__text strong.highlight-keyword {
  color: #FFD700;
  font-weight: bold;
}

.page-strategy-tips-fishing-guide__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #E2E8F0;
}

.page-strategy-tips-fishing-guide__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-strategy-tips-fishing-guide__list li strong {
  color: #FFD700;
}

.page-strategy-tips-fishing-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-strategy-tips-fishing-guide__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-strategy-tips-fishing-guide__table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

.page-strategy-tips-fishing-guide__table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #1A202C;
  border: 1px solid #FFD700;
}

.page-strategy-tips-fishing-guide__table th,
.page-strategy-tips-fishing-guide__table td {
  border: 1px solid #4A5568;
  padding: 12px 15px;
  text-align: left;
  color: #E2E8F0;
}

.page-strategy-tips-fishing-guide__table th {
  background-color: #FFD700;
  color: #1A202C;
  font-weight: bold;
  font-size: 1.1em;
}

.page-strategy-tips-fishing-guide__table tbody tr:nth-child(even) {
  background-color: #2D3748;
}

.page-strategy-tips-fishing-guide__text-link {
  color: #FFD700; /* Gold link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-strategy-tips-fishing-guide__text-link:hover {
  color: #e5c100; /* Darker gold on hover */
  text-decoration: underline;
}

.page-strategy-tips-fishing-guide__faq-item {
  background-color: #2D3748;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-strategy-tips-fishing-guide__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
}

.page-strategy-tips-fishing-guide__faq-answer {
  font-size: 1.1em;
  color: #E2E8F0;
}

.page-strategy-tips-fishing-guide__cta-section {
  background: linear-gradient(90deg, #1A202C, #4A5568); /* Another dark gradient */
  padding: 80px 0;
  text-align: center;
  color: #E2E8F0;
}

.page-strategy-tips-fishing-guide__cta-title {
  font-size: 3em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-strategy-tips-fishing-guide__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-strategy-tips-fishing-guide__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-strategy-tips-fishing-guide__hero-title {
    font-size: 2.5em;
  }

  .page-strategy-tips-fishing-guide__hero-subtitle,
  .page-strategy-tips-fishing-guide__cta-description {
    font-size: 1.2em;
  }

  .page-strategy-tips-fishing-guide__section-title {
    font-size: 2em;
  }

  .page-strategy-tips-fishing-guide__sub-title {
    font-size: 1.5em;
  }

  .page-strategy-tips-fishing-guide__text,
  .page-strategy-tips-fishing-guide__list li,
  .page-strategy-tips-fishing-guide__faq-question,
  .page-strategy-tips-fishing-guide__faq-answer {
    font-size: 1em;
  }

  .page-strategy-tips-fishing-guide__cta-title {
    font-size: 2.2em;
  }

  .page-strategy-tips-fishing-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-strategy-tips-fishing-guide__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

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

  .page-strategy-tips-fishing-guide__hero-subtitle {
    font-size: 1em;
  }

  .page-strategy-tips-fishing-guide__section-title {
    font-size: 1.8em;
  }

  .page-strategy-tips-fishing-guide__sub-title {
    font-size: 1.3em;
  }

  .page-strategy-tips-fishing-guide__cta-title {
    font-size: 1.8em;
  }
}