.page-fishing-games {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-fishing-games__section-spacing {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-fishing-games__hero-section {
  background-color: #2F6BFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding to respect body padding-top */
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-fishing-games__hero-content {
  max-width: 800px;
  text-align: center;
  padding: 30px 20px 40px;
  color: #FFFFFF;
  background-color: #2F6BFF; /* Ensure content background is consistent */
}

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

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

.page-fishing-games__hero-button,
.page-fishing-games__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
}

.page-fishing-games__hero-button:hover,
.page-fishing-games__button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-fishing-games__section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-fishing-games__section-description {
  font-size: 1.1rem;
  color: #1F2D3D;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.page-fishing-games__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px; /* Minimum 200px height for content images */
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-fishing-games__button-wrapper {
  text-align: center;
  margin-top: 20px;
}

.page-fishing-games__button--primary {
  min-width: 200px;
}

.page-fishing-games__why-choose-section {
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
  padding: 50px 30px;
}

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

.page-fishing-games__feature-card {
  text-align: center;
  padding: 25px;
  background-color: #F4F7FB;
  border-radius: 10px;
  border: 1px solid #D6E2FF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__feature-icon {
  width: 100%; /* Ensure images take full width of card */
  max-width: 250px; /* Keep icon-like images from being too large */
  height: auto;
  min-height: 200px; /* Enforce minimum size */
  display: block;
  margin: 0 auto 20px;
  object-fit: contain;
}

.page-fishing-games__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

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

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

.page-fishing-games__cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-fishing-games__cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__faq-section {
  background-color: #F4F7FB;
}

.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;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-fishing-games__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #2F6BFF;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.is-active .page-fishing-games__faq-question::after {
  content: '-';
  transform: rotate(0deg);
}

.page-fishing-games__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-fishing-games__faq-item.is-active .page-fishing-games__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding: 15px 25px 20px;
}

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

/* Responsive Styles */
@media (max-width: 849px) {
  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-fishing-games__section-title {
    font-size: 2rem;
  }

  .page-fishing-games__cta-title {
    font-size: 2rem;
  }

  .page-fishing-games__games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

  .page-fishing-games__feature-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__section-spacing {
    padding: 30px 15px;
  }

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

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

  .page-fishing-games__games-grid,
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__game-image,
  .page-fishing-games__feature-icon {
    max-width: 100%;
    height: auto;
    min-height: 200px; /* Ensure images are not too small on mobile */
  }

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

  .page-fishing-games__cta-title {
    font-size: 1.8rem;
  }

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

  .page-fishing-games__faq-question {
    font-size: 1.1rem;
    padding: 18px 20px;
  }

  .page-fishing-games__faq-answer {
    padding: 0 20px;
  }

  .page-fishing-games__faq-item.is-active .page-fishing-games__faq-answer {
    padding: 12px 20px 18px;
  }

  /* Ensure all content images within .page-fishing-games are responsive */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .page-fishing-games .page-fishing-games__game-image,
  .page-fishing-games .page-fishing-games__feature-icon {
    width: 100%;
    max-width: 100%; /* Explicitly ensure content images fit */
    height: auto;
    min-height: 200px; /* Enforce minimum size for images */
  }
}

@media (max-width: 549px) {
  .page-fishing-games__section-title {
    font-size: 1.8rem;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

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

  .page-fishing-games__hero-button,
  .page-fishing-games__button {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .page-fishing-games__cta-title {
    font-size: 1.6rem;
  }
}