/* style/games-fishing-game-tips.css */
.page-games-fishing-game-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1A2B4C; /* Dark blue for main text */
  background-color: #f8f9fa;
}

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

.page-games-fishing-game-tips__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #3a4d70 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-games-fishing-game-tips__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

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

.page-games-fishing-game-tips__section {
  padding: 60px 0;
}

.page-games-fishing-game-tips__section--intro .page-games-fishing-game-tips__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-games-fishing-game-tips__section--intro .page-games-fishing-game-tips__text-content {
  flex: 2;
}

.page-games-fishing-game-tips__section--intro .page-games-fishing-game-tips__image-container {
  flex: 1;
  text-align: center;
}

.page-games-fishing-game-tips__section-title {
  font-size: 2.2em;
  color: #1A2B4C;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-games-fishing-game-tips__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #5f6b82;
}

.page-games-fishing-game-tips__subsection-title,
.page-games-fishing-game-tips__tip-title,
.page-games-fishing-game-tips__faq-question {
  font-size: 1.6em;
  color: #1A2B4C;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-games-fishing-game-tips__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-games-fishing-game-tips__list li {
  margin-bottom: 10px;
  color: #333;
}

.page-games-fishing-game-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-games-fishing-game-tips__image--small {
  max-width: 600px;
  display: block;
  margin: 20px auto;
}

.page-games-fishing-game-tips__tip-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
}

.page-games-fishing-game-tips__tip-item p {
  margin-bottom: 15px;
}

.page-games-fishing-game-tips__list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
}

.page-games-fishing-game-tips__list--columns li {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid #FFD700;
}

.page-games-fishing-game-tips__list--benefits {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-games-fishing-game-tips__list--benefits li {
  background-color: #e6f7ff; /* Light blue tint */
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #cceeff;
  color: #1A2B4C;
  font-weight: bold;
  position: relative;
  padding-left: 45px;
}

.page-games-fishing-game-tips__list--benefits li::before {
  content: '✓';
  color: #007bff;
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-games-fishing-game-tips__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background-color: #1A2B4C;
  color: #FFFFFF;
  border-radius: 10px;
}

.page-games-fishing-game-tips__cta-block p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #FFD700;
}

.page-games-fishing-game-tips__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.page-games-fishing-game-tips__button--hero {
  background-color: #FFD700;
  color: #1A2B4C;
  border: 2px solid #FFD700;
}

.page-games-fishing-game-tips__button--hero:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
}

.page-games-fishing-game-tips__button--primary {
  background-color: #FFD700;
  color: #1A2B4C;
  border: 2px solid #FFD700;
}

.page-games-fishing-game-tips__button--primary:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
}

.page-games-fishing-game-tips__button--secondary {
  background-color: transparent;
  color: #1A2B4C;
  border: 2px solid #1A2B4C;
}

.page-games-fishing-game-tips__button--secondary:hover {
  background-color: #1A2B4C;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-games-fishing-game-tips__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}

.page-games-fishing-game-tips__faq-question {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4em;
  color: #1A2B4C;
  border-left: none;
  padding-left: 0;
}

.page-games-fishing-game-tips__faq-answer {
  color: #333;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-fishing-game-tips__hero-title {
    font-size: 2.2em;
  }
  .page-games-fishing-game-tips__section-title {
    font-size: 1.8em;
  }
  .page-games-fishing-game-tips__section--intro .page-games-fishing-game-tips__content-wrapper {
    flex-direction: column;
  }
  .page-games-fishing-game-tips__image-container {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-games-fishing-game-tips__list--columns {
    grid-template-columns: 1fr;
  }
  .page-games-fishing-game-tips__list--benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-games-fishing-game-tips__hero {
    padding: 60px 0;
  }
  .page-games-fishing-game-tips__hero-title {
    font-size: 1.8em;
  }
  .page-games-fishing-game-tips__hero-description {
    font-size: 1em;
  }
  .page-games-fishing-game-tips__section {
    padding: 40px 0;
  }
  .page-games-fishing-game-tips__section-title {
    font-size: 1.6em;
  }
  .page-games-fishing-game-tips__subsection-title,
  .page-games-fishing-game-tips__tip-title,
  .page-games-fishing-game-tips__faq-question {
    font-size: 1.3em;
  }
  .page-games-fishing-game-tips__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}