.page-fishing-games-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F8F8F8; /* Light gray for main text on dark background */
  background-color: #0A2239; /* Main background color */
}

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

.page-fishing-games-faq__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #1A3F5B 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #F8F8F8;
  border-bottom: 2px solid #FFD700;
}

.page-fishing-games-faq__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  font-weight: bold;
}

.page-fishing-games-faq__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-faq__hero-description a,
.page-fishing-games-faq__faq-answer a,
.page-fishing-games-faq__cta-description a,
.page-fishing-games-faq__intro-text a {
  color: #FFD700; /* Gold for links */
  text-decoration: underline;
}

.page-fishing-games-faq__hero-description a:hover,
.page-fishing-games-faq__faq-answer a:hover,
.page-fishing-games-faq__cta-description a:hover,
.page-fishing-games-faq__intro-text a:hover {
  color: #FFF0B3; /* Lighter gold on hover */
}

.page-fishing-games-faq__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-fishing-games-faq__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-fishing-games-faq__btn--primary:hover {
  background-color: #E6C200; /* Darker gold on hover */
  color: #000;
}

.page-fishing-games-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
}

.page-fishing-games-faq__faq-section {
  padding: 60px 0;
}

.page-fishing-games-faq__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.page-fishing-games-faq__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: left;
}

.page-fishing-games-faq__intro-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

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

.page-fishing-games-faq__faq-item {
  background-color: #1A3F5B; /* Slightly lighter dark blue for FAQ items */
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-fishing-games-faq__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-fishing-games-faq__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-fishing-games-faq__faq-answer {
  font-size: 1.1em;
  color: #F8F8F8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-fishing-games-faq__faq-item.active .page-fishing-games-faq__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding-top: 15px;
}

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

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

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

.page-fishing-games-faq__image {
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-fishing-games-faq__image--fullwidth {
  height: 300px;
}

.page-fishing-games-faq__image--small {
  max-width: 60%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-faq__cta-bottom {
  background-color: #1A3F5B;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin-top: 50px;
  border: 1px solid #FFD700;
}

.page-fishing-games-faq__cta-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games-faq__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-fishing-games-faq__sidebar {
  background-color: #1A3F5B;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-faq__sidebar-block {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.page-fishing-games-faq__sidebar-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-fishing-games-faq__sidebar-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-fishing-games-faq__info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-fishing-games-faq__info-list li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #E0E0E0;
}

.page-fishing-games-faq__info-list strong {
  color: #FFD700;
}

.page-fishing-games-faq__btn--sidebar {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #FFD700;
  color: #0A2239;
  border: 2px solid #FFD700;
  padding: 10px 15px;
  font-size: 1em;
  border-radius: 8px;
}

.page-fishing-games-faq__btn--sidebar:hover {
  background-color: #E6C200;
  color: #000;
}

.page-fishing-games-faq__image--sidebar {
  height: 180px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-fishing-games-faq__image--sidebar-qr {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 15px auto;
  border: 5px solid #FFD700;
  border-radius: 5px;
}

.page-fishing-games-faq__sidebar p {
  font-size: 0.95em;
  margin-bottom: 15px;
  color: #C0C0C0;
}

.page-fishing-games-faq .highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-fishing-games-faq__grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games-faq__hero-title {
    font-size: 2.5em;
  }

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

  .page-fishing-games-faq__intro-text {
    text-align: center;
  }

  .page-fishing-games-faq__main-content {
    order: 2;
  }

  .page-fishing-games-faq__sidebar {
    order: 1;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-faq__hero-section {
    padding: 60px 0;
  }

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

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

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

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

  .page-fishing-games-faq__faq-answer {
    font-size: 0.95em;
  }

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

  .page-fishing-games-faq__image--fullwidth {
    height: 200px;
  }

  .page-fishing-games-faq__image--small {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-faq__hero-section {
    padding: 40px 0;
  }

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

  .page-fishing-games-faq__hero-description {
    font-size: 0.9em;
  }

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

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

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

  .page-fishing-games-faq__faq-item {
    padding: 15px;
  }

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

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

  .page-fishing-games-faq__image--sidebar-qr {
    max-width: 120px;
  }
}