.page-betting-strategy-hub {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #0a0a0a, so text is white */
  background-color: #0a0a0a; /* Ensure consistency with shared.css body background */
}

.page-betting-strategy-hub__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  background-color: #0a0a0a; /* Ensure dark background for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-betting-strategy-hub__hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.page-betting-strategy-hub__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-betting-strategy-hub__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-betting-strategy-hub__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-betting-strategy-hub__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-betting-strategy-hub__section {
  padding: 60px 20px;
}

.page-betting-strategy-hub__dark-bg {
  background-color: #0a0a0a; /* Dark background from body */
  color: #ffffff;
}

.page-betting-strategy-hub__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
  color: #ffffff;
}

.page-betting-strategy-hub__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-betting-strategy-hub__heading {
  font-size: 2.2em;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-betting-strategy-hub__sub-heading {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-betting-strategy-hub__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-betting-strategy-hub__paragraph a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-betting-strategy-hub__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-betting-strategy-hub__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-betting-strategy-hub__list-item strong {
  color: #26A9E0;
}

.page-betting-strategy-hub__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-betting-strategy-hub__btn-primary,
.page-betting-strategy-hub__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-betting-strategy-hub__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-betting-strategy-hub__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-betting-strategy-hub__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-betting-strategy-hub__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-betting-strategy-hub__faq-list {
  margin-top: 40px;
}

.page-betting-strategy-hub__faq-item {
  background-color: #1a1a1a; /* Lighter dark background for FAQ item */
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  color: #f0f0f0;
}

.page-betting-strategy-hub__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  color: #26A9E0;
  list-style: none; /* Remove default marker for summary */
}

.page-betting-strategy-hub__faq-question::-webkit-details-marker {
  display: none; /* Remove default marker for webkit browsers */
}

.page-betting-strategy-hub__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-betting-strategy-hub__faq-answer {
  padding-top: 15px;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-betting-strategy-hub__faq-answer p {
  margin-bottom: 0;
  color: #f0f0f0;
}

.page-betting-strategy-hub__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-betting-strategy-hub__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-betting-strategy-hub__hero-title {
    font-size: 2em;
  }

  .page-betting-strategy-hub__hero-description {
    font-size: 1em;
  }

  .page-betting-strategy-hub__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-betting-strategy-hub__btn-primary,
  .page-betting-strategy-hub__btn-secondary {
    width: 100%;
    padding: 12px 20px;
  }

  .page-betting-strategy-hub__section {
    padding: 40px 15px;
  }

  .page-betting-strategy-hub__heading {
    font-size: 1.8em;
  }

  .page-betting-strategy-hub__sub-heading {
    font-size: 1.5em;
  }

  .page-betting-strategy-hub__paragraph,
  .page-betting-strategy-hub__list-item,
  .page-betting-strategy-hub__faq-answer p {
    font-size: 0.95em;
  }

  .page-betting-strategy-hub img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-betting-strategy-hub__container,
  .page-betting-strategy-hub__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-betting-strategy-hub__faq-item {
    padding: 15px;
  }

  .page-betting-strategy-hub__faq-question {
    font-size: 1.1em;
  }
}