/* style/fishing-games-faq.css */
.page-fishing-games-faq {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-fishing-games-faq__hero {
  background: linear-gradient(135deg, #007bff, #4da3ff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-fishing-games-faq__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.page-fishing-games-faq__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-fishing-games-faq__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-fishing-games-faq__section--alt {
  background-color: #f0f7ff; /* Light blue background for alternating sections */
}

.page-fishing-games-faq__section-title {
  font-size: 2.5em;
  color: #0056b3; /* Darker variant of primary color */
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-fishing-games-faq__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 25px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-fishing-games-faq__faq-question {
  font-size: 1.6em;
  color: #007bff;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #eaf5ff; /* Lighter blue for question background */
  border-bottom: 1px solid #cfe8ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-fishing-games-faq__faq-question:hover {
  background-color: #dbeeff;
}

.page-fishing-games-faq__faq-question::after {
  content: '+';
  font-size: 1.2em;
  font-weight: bold;
  color: #007bff;
}

.page-fishing-games-faq__faq-item.active .page-fishing-games-faq__faq-question::after {
  content: '-';
}

.page-fishing-games-faq__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  color: #555;
  display: none; /* Hidden by default, toggled by JS */
  background-color: #ffffff;
}

.page-fishing-games-faq__faq-answer p {
  margin-bottom: 15px;
}

.page-fishing-games-faq__faq-answer ul,
.page-fishing-games-faq__faq-answer ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-fishing-games-faq__faq-answer li {
  margin-bottom: 8px;
}

.page-fishing-games-faq__faq-answer a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games-faq__faq-answer a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-fishing-games-faq__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-faq__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-fishing-games-faq__btn--primary {
  background-color: #007bff;
  color: #fff;
}

.page-fishing-games-faq__btn--primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-fishing-games-faq__btn--secondary {
  background-color: #ffc107;
  color: #333;
}

.page-fishing-games-faq__btn--secondary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.page-fishing-games-faq__btn--large {
  padding: 18px 40px;
  font-size: 1.4em;
  margin-top: 30px;
}

.page-fishing-games-faq__cta {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games-faq__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-faq__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-fishing-games-faq .highlight {
  color: #ffc107;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-fishing-games-faq__hero-title {
    font-size: 2.5em;
  }

  .page-fishing-games-faq__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-fishing-games-faq__faq-question {
    font-size: 1.3em;
    padding: 15px 20px;
  }

  .page-fishing-games-faq__faq-answer {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-fishing-games-faq__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-fishing-games-faq__btn--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }

  .page-fishing-games-faq__cta-title {
    font-size: 2.2em;
  }

  .page-fishing-games-faq__cta-description {
    font-size: 1.1em;
  }
}

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

  .page-fishing-games-faq__hero-subtitle {
    font-size: 1em;
  }

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

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

  .page-fishing-games-faq__btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-fishing-games-faq__btn:last-child {
    margin-bottom: 0;
  }
  .page-fishing-games-faq__btn--large {
    width: auto;
  }
}