.page-resources-how-to-choose-best-fishing-platform {
  color: #f8f9fa;
  background-color: #121212;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

.page-resources-how-to-choose-best-fishing-platform__hero-banner {
  position: relative;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0056b3, #007bff);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-how-to-choose-best-fishing-platform__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-how-to-choose-best-fishing-platform__hero-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-how-to-choose-best-fishing-platform__hero-subtitle {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-resources-how-to-choose-best-fishing-platform__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ffc107, #ffa000);
  color: #333333;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-resources-how-to-choose-best-fishing-platform__cta-button:hover {
  background: linear-gradient(135deg, #ffa000, #ffc107);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-choose-best-fishing-platform__cta-button--small {
  padding: 10px 25px;
  font-size: 1em;
}

.page-resources-how-to-choose-best-fishing-platform__content-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-resources-how-to-choose-best-fishing-platform__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-how-to-choose-best-fishing-platform__article-content {
  background-color: #282828;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-choose-best-fishing-platform__section-title {
  font-size: 2.2em;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}

.page-resources-how-to-choose-best-fishing-platform__sub-section-title {
  font-size: 1.6em;
  color: #ffc107;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-how-to-choose-best-fishing-platform__article-content p {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 18px;
  line-height: 1.8;
}

.page-resources-how-to-choose-best-fishing-platform__article-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-how-to-choose-best-fishing-platform__article-content a:hover {
  color: #5bc0de;
  text-decoration: underline;
}

.page-resources-how-to-choose-best-fishing-platform__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-how-to-choose-best-fishing-platform__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-how-to-choose-best-fishing-platform__list li strong {
  color: #ffc107;
}

.page-resources-how-to-choose-best-fishing-platform__article-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-resources-how-to-choose-best-fishing-platform__call-to-action {
  text-align: center;
  background-color: #3a3a3a;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-choose-best-fishing-platform__call-to-action p {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-resources-how-to-choose-best-fishing-platform__faq-list {
  margin-top: 30px;
}

.page-resources-how-to-choose-best-fishing-platform__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #333333;
}

.page-resources-how-to-choose-best-fishing-platform__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-resources-how-to-choose-best-fishing-platform__faq-item.active .page-resources-how-to-choose-best-fishing-platform__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #2a2a2a;
  border-radius: 0 0 5px 5px;
}

.page-resources-how-to-choose-best-fishing-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #444444;
  border: 1px solid #555555;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-how-to-choose-best-fishing-platform__faq-question:hover {
  background: #555555;
  border-color: #666666;
}

.page-resources-how-to-choose-best-fishing-platform__faq-question:active {
  background: #666666;
}

.page-resources-how-to-choose-best-fishing-platform__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-resources-how-to-choose-best-fishing-platform__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #ffc107;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-how-to-choose-best-fishing-platform__faq-item.active .page-resources-how-to-choose-best-fishing-platform__faq-toggle {
  color: #007bff;
  transform: rotate(45deg);
}

.page-resources-how-to-choose-best-fishing-platform__blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-best-fishing-platform__blog-card {
  background-color: #333333;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-how-to-choose-best-fishing-platform__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-choose-best-fishing-platform__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-resources-how-to-choose-best-fishing-platform__blog-title {
  font-size: 1.3em;
  color: #ffffff;
  padding: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-how-to-choose-best-fishing-platform__blog-title a {
  color: #ffffff;
  text-decoration: none;
}

.page-resources-how-to-choose-best-fishing-platform__blog-title a:hover {
  color: #ffc107;
  text-decoration: underline;
}

.page-resources-how-to-choose-best-fishing-platform__blog-excerpt {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 15px 15px;
  flex-grow: 1;
}

.page-resources-how-to-choose-best-fishing-platform__blog-link {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 15px;
  margin: 0 15px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-choose-best-fishing-platform__blog-link:hover {
  background-color: #0056b3;
}

.page-resources-how-to-choose-best-fishing-platform__outro-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-choose-best-fishing-platform__outro-cta p {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-resources-how-to-choose-best-fishing-platform .highlight {
  color: #ffc107;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-how-to-choose-best-fishing-platform__hero-title {
    font-size: 2.8em;
  }

  .page-resources-how-to-choose-best-fishing-platform__hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-how-to-choose-best-fishing-platform__section-title {
    font-size: 2em;
  }

  .page-resources-how-to-choose-best-fishing-platform__sub-section-title {
    font-size: 1.4em;
  }

  .page-resources-how-to-choose-best-fishing-platform__article-content p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-choose-best-fishing-platform__hero-banner {
    padding-top: 100px !important;
    padding-bottom: 40px;
  }

  .page-resources-how-to-choose-best-fishing-platform__hero-title {
    font-size: 2.2em;
  }

  .page-resources-how-to-choose-best-fishing-platform__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-how-to-choose-best-fishing-platform__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-resources-how-to-choose-best-fishing-platform__content-section {
    padding: 30px 0;
  }

  .page-resources-how-to-choose-best-fishing-platform__container {
    padding: 0 15px;
  }

  .page-resources-how-to-choose-best-fishing-platform__article-content {
    padding: 25px;
  }

  .page-resources-how-to-choose-best-fishing-platform__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-resources-how-to-choose-best-fishing-platform__sub-section-title {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-resources-how-to-choose-best-fishing-platform__article-content p,
  .page-resources-how-to-choose-best-fishing-platform__list li {
    font-size: 0.95em;
  }

  .page-resources-how-to-choose-best-fishing-platform__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-resources-how-to-choose-best-fishing-platform__faq-question h3 {
    font-size: 1em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-resources-how-to-choose-best-fishing-platform__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-resources-how-to-choose-best-fishing-platform__faq-answer {
    padding: 0 15px;
  }
  
  .page-resources-how-to-choose-best-fishing-platform__faq-item.active .page-resources-how-to-choose-best-fishing-platform__faq-answer {
    padding: 15px !important;
  }

  .page-resources-how-to-choose-best-fishing-platform__blog-cards {
    grid-template-columns: 1fr;
  }

  .page-resources-how-to-choose-best-fishing-platform__outro-cta p {
    font-size: 1.4em;
  }

  /* Force responsive images and containers */
  .page-resources-how-to-choose-best-fishing-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources-how-to-choose-best-fishing-platform__section,
  .page-resources-how-to-choose-best-fishing-platform__card,
  .page-resources-how-to-choose-best-fishing-platform__container,
  .page-resources-how-to-choose-best-fishing-platform__article-content,
  .page-resources-how-to-choose-best-fishing-platform__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-choose-best-fishing-platform__hero-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-choose-best-fishing-platform__hero-subtitle {
    font-size: 0.9em;
  }

  .page-resources-how-to-choose-best-fishing-platform__section-title {
    font-size: 1.5em;
  }

  .page-resources-how-to-choose-best-fishing-platform__sub-section-title {
    font-size: 1.1em;
  }

  .page-resources-how-to-choose-best-fishing-platform__article-content {
    padding: 15px;
  }

  .page-resources-how-to-choose-best-fishing-platform__list {
    margin-left: 15px;
  }

  .page-resources-how-to-choose-best-fishing-platform__outro-cta p {
    font-size: 1.2em;
  }
}