.page-fishing-games {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

.page-fishing-games__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1400px; /* Adjust based on desired hero image width */
  margin-bottom: 20px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure min size */
  min-height: 200px;
}

.page-fishing-games__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  max-width: 100%;
  /* No fixed font-size, rely on clamp if absolutely needed, but generally avoid */
}

.page-fishing-games__description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0EFFF;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-fishing-games__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-fishing-games__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  line-height: 1.3;
}

.page-fishing-games__features-section,
.page-fishing-games__why-choose-us,
.page-fishing-games__cta-section,
.page-fishing-games__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.page-fishing-games__feature-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-fishing-games__feature-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.page-fishing-games__card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-fishing-games__card-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.page-fishing-games__card-link:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

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

.page-fishing-games__advantage-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border: 1px solid #D6E2FF;
}

.page-fishing-games__advantage-title {
  font-size: 1.35rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}

.page-fishing-games__advantage-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-fishing-games__cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(90deg, #2F6BFF 0%, #6FA3FF 100%);
  border-radius: 15px;
  margin-top: 60px;
  color: #FFFFFF;
}

.page-fishing-games__cta-content {
  max-width: 800px;
  margin-bottom: 30px;
}

.page-fishing-games__cta-section .page-fishing-games__section-title {
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 20px;
}

.page-fishing-games__cta-section .page-fishing-games__description {
  color: #E0EFFF;
  margin-bottom: 40px;
}

.page-fishing-games__cta-image-wrapper {
  width: 100%;
  max-width: 1000px;
}

.page-fishing-games__cta-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

.page-fishing-games__faq-list {
  margin-top: 30px;
}

.page-fishing-games__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__faq-question {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.page-fishing-games__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-fishing-games__faq-answer a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-bottom: 30px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem); /* Using clamp for responsive H1 */
  }

  .page-fishing-games__description {
    font-size: 1rem;
  }

  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-fishing-games__section-title {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-fishing-games__features-section,
  .page-fishing-games__why-choose-us,
  .page-fishing-games__cta-section,
  .page-fishing-games__faq-section {
    padding: 30px 15px;
  }

  .page-fishing-games__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__advantages-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__feature-image,
  .page-fishing-games__cta-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content images are not smaller than 200px and prevent overflow */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size even on mobile */
    min-height: 200px; /* Enforce min size even on mobile */
  }

  .page-fishing-games__cta-section {
    flex-direction: column;
    padding: 40px 15px;
  }

  .page-fishing-games__cta-image-wrapper {
    margin-top: 30px;
  }

  .page-fishing-games__faq-question {
    font-size: 1.1rem;
  }

  .page-fishing-games__faq-answer {
    font-size: 0.95rem;
  }
}