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

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

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

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image wrapper */
  margin-bottom: 20px;
}

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

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

.page-fishing-games__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

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

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

.page-fishing-games__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-fishing-games__section-title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D;
}

.page-fishing-games__about-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-fishing-games__about-content p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.page-fishing-games__features-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

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

.page-fishing-games__feature-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1F2D3D;
}

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

.page-fishing-games__cta-section {
  padding: 80px 0;
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
}

.page-fishing-games__cta-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-fishing-games__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
}

.page-fishing-games__cta-button--secondary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  margin-right: 15px;
}

.page-fishing-games__cta-button--outline {
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

.page-fishing-games__cta-button--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-fishing-games__faq-list {
  display: grid;
  gap: 20px;
}

.page-fishing-games__faq-question {
  font-size: 1.2em;
  font-weight: bold;
  color: #2F6BFF;
  margin-bottom: 10px;
}

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

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

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

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

  .page-fishing-games__hero-title {
    font-size: 2.8em;
  }

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

@media (max-width: 768px) {
  .page-fishing-games__hero-title {
    font-size: 2em;
  }

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

  .page-fishing-games__section-title {
    font-size: 1.8em;
  }

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

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

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

  .page-fishing-games__cta-button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-fishing-games__cta-button--secondary {
    margin-bottom: 15px;
  }

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

  /* Ensure images do not overflow on mobile */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 1.6em;
  }

  .page-fishing-games__section-title {
    font-size: 1.5em;
  }

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