.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-fishing-games .highlight {
  color: #1E90FF;
  font-weight: bold;
}

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

.page-fishing-games section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-fishing-games section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-fishing-games h1,
.page-fishing-games h2 {
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-fishing-games h1 {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-fishing-games h2 {
  font-size: 2.5em;
  color: #333333;
}

.page-fishing-games h3 {
  color: #1E90FF;
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555555;
}

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

.page-fishing-games ul li {
  margin-bottom: 10px;
  color: #555555;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #FFD700;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-fishing-games .cta-button:hover {
  background: #1E90FF;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .cta-button.small-button {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 10px;
}

/* Hero Section */
.page-fishing-games .fishing-games-hero {
  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, #1E90FF 0%, #007bff 100%); /* Darker blue background for contrast */
  color: #ffffff;
  overflow: hidden;
}

.page-fishing-games .fishing-games-hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-fishing-games .fishing-games-hero-image {
  width: 100%;
  max-width: 800px; /* Adjust max-width for image */
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games .fishing-games-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games .fishing-games-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-fishing-games .fishing-games-hero-content p {
  color: #e0e0e0;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-fishing-games .fishing-games-hero .highlight {
  color: #FFD700;
}

.page-fishing-games .section-introduction .image-content {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-fishing-games .section-introduction .image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games .game-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-fishing-games .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-fishing-games .game-card h3 {
  font-size: 1.5em;
  margin: 20px 15px 10px;
  color: #333333;
  flex-grow: 1;
}

.page-fishing-games .game-card h3 a {
  color: #1E90FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games .game-card h3 a:hover {
  color: #FFD700;
}

.page-fishing-games .game-card p {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px 15px;
}

.page-fishing-games .game-card .cta-button {
  margin-bottom: 20px;
  align-self: center;
}

/* FAQ Section */
.page-fishing-games .section-faq {
  background-color: #f8f8f8;
}

.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
}

.page-fishing-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-fishing-games .faq-question:hover {
  background: #f0f0f0;
}

.page-fishing-games .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #333333;
  font-weight: 600;
}

.page-fishing-games .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #555555;
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

.page-fishing-games .faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games h1 {
    font-size: 2.8em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
  }
  .page-fishing-games h3 {
    font-size: 1.5em;
  }
  .page-fishing-games section {
    padding: 50px 0;
  }
  .page-fishing-games .fishing-games-hero-image {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games h1 {
    font-size: 2.2em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games h3 {
    font-size: 1.3em;
  }
  .page-fishing-games p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fishing-games .fishing-games-hero {
    padding: 60px 15px;
  }
  .page-fishing-games .fishing-games-hero-image {
    max-width: 100%;
  }
  .page-fishing-games .game-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 1.8em;
  }
  .page-fishing-games .faq-answer {
    padding: 0 20px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.5em;
  }
  .page-fishing-games h3 {
    font-size: 1.2em;
  }
  .page-fishing-games .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-fishing-games section {
    padding: 40px 0;
  }
}