.page-fishing-games-fishing-master-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light text on dark background */
  background-color: #0A2463; /* Main primary color */
}

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

.page-fishing-games-fishing-master-guide__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1c4dc3 100%); /* Dark blue to a slightly lighter blue for depth */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-fishing-games-fishing-master-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B23C; /* Secondary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-fishing-master-guide__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-fishing-games-fishing-master-guide__content-section {
  padding: 60px 0;
  background-color: #0A2463;
}

.page-fishing-games-fishing-master-guide__section-title {
  font-size: 2.5em;
  color: #E3B23C; /* Secondary color for main titles */
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 3px solid #E3B23C;
  padding-bottom: 15px;
  margin-top: 40px;
}

.page-fishing-games-fishing-master-guide__subsection-title {
  font-size: 1.8em;
  color: #E3B23C; /* Secondary color for subtitles */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #E3B23C;
  padding-left: 15px;
}

.page-fishing-games-fishing-master-guide p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #F0F0F0;
}

.page-fishing-games-fishing-master-guide ul {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: #F0F0F0;
}

.page-fishing-games-fishing-master-guide ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-fishing-games-fishing-master-guide strong {
  color: #E3B23C;
}

.page-fishing-games-fishing-master-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-fishing-master-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-fishing-games-fishing-master-guide__btn--primary {
  background-color: #E3B23C; /* Secondary color */
  color: #0A2463; /* Primary color for text */
  border: 2px solid #E3B23C;
}

.page-fishing-games-fishing-master-guide__btn--primary:hover {
  background-color: #f0c567;
  transform: translateY(-3px);
}

.page-fishing-games-fishing-master-guide__btn--secondary {
  background-color: transparent;
  color: #E3B23C; /* Secondary color for text */
  border: 2px solid #E3B23C;
}

.page-fishing-games-fishing-master-guide__btn--secondary:hover {
  background-color: #E3B23C;
  color: #0A2463;
  transform: translateY(-3px);
}

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

  .page-fishing-games-fishing-master-guide__hero-subtitle {
    font-size: 1.2em;
  }

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

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

  .page-fishing-games-fishing-master-guide p, .page-fishing-games-fishing-master-guide ul li {
    font-size: 1em;
  }

  .page-fishing-games-fishing-master-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

  .page-fishing-games-fishing-master-guide__hero-subtitle {
    font-size: 1em;
  }

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

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

  .page-fishing-games-fishing-master-guide__btn {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}