/* style/resources-top-online-fishing-platforms.css */

:root {
  --primary-color: #0056B3;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-dark-card: rgba(0, 0, 0, 0.2);
  --border-light: #e0e0e0;
}

.page-resources-top-online-fishing-platforms {
  padding-top: 180px; /* Adjusted for fixed header on desktop */
  color: var(--text-light);
  background: var(--dark-bg-1);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-resources-top-online-fishing-platforms {
    padding-top: 140px; /* Adjusted for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }
}

.page-resources-top-online-fishing-platforms__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-top-online-fishing-platforms__hero-section {
  background: linear-gradient(135deg, var(--primary-color), #003F8C);
  padding: 60px 0;
  text-align: center;
  color: var(--text-light);
}

.page-resources-top-online-fishing-platforms__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-top-online-fishing-platforms__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-resources-top-online-fishing-platforms__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-top-online-fishing-platforms__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-top-online-fishing-platforms__cta-button:hover {
  background: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-top-online-fishing-platforms__section {
  padding: 40px 0;
}

.page-resources-top-online-fishing-platforms__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-resources-top-online-fishing-platforms__content-card {
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 30px;
}

.page-resources-top-online-fishing-platforms__content-card p {
  margin-bottom: 15px;
  font-size: 16px;
}

.page-resources-top-online-fishing-platforms__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-top-online-fishing-platforms__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-top-online-fishing-platforms__numbered-list {
  list-style: decimal inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-top-online-fishing-platforms__list-item {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-resources-top-online-fishing-platforms__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px auto 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-top-online-fishing-platforms__button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.page-resources-top-online-fishing-platforms__button--primary {
  background: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

.page-resources-top-online-fishing-platforms__button--primary:hover {
  background: #004499;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0, 86, 179, 0.4);
}

/* FAQ Styles */
.page-resources-top-online-fishing-platforms__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-top-online-fishing-platforms__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-top-online-fishing-platforms__faq-item.active .page-resources-top-online-fishing-platforms__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-resources-top-online-fishing-platforms__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-top-online-fishing-platforms__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-top-online-fishing-platforms__faq-question:active {
  background: #eeeeee;
}

.page-resources-top-online-fishing-platforms__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-dark);
}

.page-resources-top-online-fishing-platforms__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  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-top-online-fishing-platforms__faq-item.active .page-resources-top-online-fishing-platforms__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-top-online-fishing-platforms__main-title {
    font-size: 40px;
  }
  .page-resources-top-online-fishing-platforms__section-title {
    font-size: 32px;
  }
  .page-resources-top-online-fishing-platforms__sub-title {
    font-size: 22px;
  }
  .page-resources-top-online-fishing-platforms__content-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-resources-top-online-fishing-platforms__main-title {
    font-size: 32px;
  }
  .page-resources-top-online-fishing-platforms__hero-description {
    font-size: 16px;
  }
  .page-resources-top-online-fishing-platforms__cta-button {
    padding: 12px 25px;
    font-size: 18px;
  }
  .page-resources-top-online-fishing-platforms__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-resources-top-online-fishing-platforms__sub-title {
    font-size: 20px;
  }
  .page-resources-top-online-fishing-platforms__content-card {
    padding: 25px;
  }
  .page-resources-top-online-fishing-platforms__content-card p,
  .page-resources-top-online-fishing-platforms__list-item {
    font-size: 15px;
  }
  .page-resources-top-online-fishing-platforms__list,
  .page-resources-top-online-fishing-platforms__numbered-list {
    padding-left: 15px;
  }
  .page-resources-top-online-fishing-platforms__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-resources-top-online-fishing-platforms__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-resources-top-online-fishing-platforms__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-resources-top-online-fishing-platforms__faq-answer {
    padding: 0 15px;
  }
  .page-resources-top-online-fishing-platforms__faq-item.active .page-resources-top-online-fishing-platforms__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-resources-top-online-fishing-platforms__main-title {
    font-size: 28px;
  }
  .page-resources-top-online-fishing-platforms__section-title {
    font-size: 24px;
  }
  .page-resources-top-online-fishing-platforms__cta-button {
    padding: 10px 20px;
    font-size: 16px;
  }
  .page-resources-top-online-fishing-platforms__content-card {
    padding: 20px;
  }
  .page-resources-top-online-fishing-platforms__button {
    padding: 10px 20px;
    font-size: 14px;
  }
}