.page-fishing-games {
  background-color: #F4F7FB;
  color: #1F2D3D;
  padding-top: 10px; /* Minimal top padding, body handles header offset */
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

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

.page-fishing-games__hero-section {
  background-color: #2F6BFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  color: #FFFFFF;
}

.page-fishing-games__hero-image-container {
  width: 100%;
  max-width: 1200px; /* Adjust as needed for display */
  margin-bottom: 20px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  min-width: 200px;
  min-height: 200px;
}

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

.page-fishing-games__hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0E0E0;
}

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

.page-fishing-games__hero-button:hover,
.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.page-fishing-games__about-section,
.page-fishing-games__features-section,
.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__about-section .page-fishing-games__container,
.page-fishing-games__features-section .page-fishing-games__container,
.page-fishing-games__faq-section .page-fishing-games__container {
  padding: 40px;
}

.page-fishing-games__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-fishing-games__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #1F2D3D;
  text-align: justify;
}

.page-fishing-games__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__image--center {
  margin: 30px auto;
  max-width: 800px;
}

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

.page-fishing-games__feature-item {
  background-color: #F4F7FB;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid #D6E2FF;
}

.page-fishing-games__feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

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

.page-fishing-games__cta-section {
  background-color: #2F6BFF;
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-fishing-games__cta-content {
  max-width: 900px;
}

.page-fishing-games__cta-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-fishing-games__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-fishing-games__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-fishing-games__faq-item {
  background-color: #F4F7FB;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #D6E2FF;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.page-fishing-games__faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-fishing-games__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
  display: none; /* Initially hidden */
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-fishing-games__container {
    padding: 15px;
  }

  .page-fishing-games__hero-section {
    padding: 30px 15px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

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

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

  .page-fishing-games__section-title {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-fishing-games__about-section .page-fishing-games__container,
  .page-fishing-games__features-section .page-fishing-games__container,
  .page-fishing-games__faq-section .page-fishing-games__container {
    padding: 25px;
  }

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

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

  .page-fishing-games__feature-title {
    font-size: 1.2rem;
  }

  .page-fishing-games__feature-description {
    font-size: 0.9rem;
  }

  .page-fishing-games__cta-section {
    padding: 60px 15px;
  }

  .page-fishing-games__cta-title {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
  }

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

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

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

@media (max-width: 549px) {
  .page-fishing-games__container {
    padding: 10px;
  }

  .page-fishing-games__hero-section {
    padding: 25px 10px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(1.2rem, 7vw, 2rem);
  }

  .page-fishing-games__hero-description {
    font-size: 0.9rem;
  }

  .page-fishing-games__hero-button,
  .page-fishing-games__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: unset;
    width: 100%;
    max-width: 250px;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
    margin-top: 30px;
    margin-bottom: 25px;
  }

  .page-fishing-games__about-section .page-fishing-games__container,
  .page-fishing-games__features-section .page-fishing-games__container,
  .page-fishing-games__faq-section .page-fishing-games__container {
    padding: 15px;
  }

  .page-fishing-games__paragraph {
    font-size: 0.9rem;
    text-align: left;
  }

  .page-fishing-games__cta-section {
    padding: 40px 10px;
  }

  .page-fishing-games__cta-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .page-fishing-games__cta-description {
    font-size: 0.9rem;
  }

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

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

  /* Ensure all images are responsive and do not overflow */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
  }
}

/* Global image size constraint for content area */
.page-fishing-games__about-section img,
.page-fishing-games__features-section img {
  min-width: 200px;
  min-height: 200px;
  width: 100%; /* Ensure they take full available width, then max-width applies */
  height: auto;
}

/* Specific override for any img within .page-fishing-games on mobile to prevent overflow */
@media (max-width: 768px) {
  .page-fishing-games img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games {
    overflow-x: hidden;
  }
}