.page-resources-sports-betting-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: #000000; /* Ensure main content area matches body background */
}

.page-resources-sports-betting-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-sports-betting-strategy__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 40px; /* Adjusted padding to ensure text is visible */
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  background-color: #000000;
  color: #ffffff;
}

.page-resources-sports-betting-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-resources-sports-betting-strategy__hero-description {
  font-size: 1.15em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-sports-betting-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-resources-sports-betting-strategy__btn-primary,
.page-resources-sports-betting-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

.page-resources-sports-betting-strategy__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #000000; /* Dark text for gold background */
  border: 2px solid #FFD700;
}

.page-resources-sports-betting-strategy__btn-primary:hover {
  background-color: #e6c200;
  color: #000000;
  border-color: #e6c200;
}

.page-resources-sports-betting-strategy__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-resources-sports-betting-strategy__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000; /* Dark text for gold background */
  border-color: #FFD700;
}

.page-resources-sports-betting-strategy__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-resources-sports-betting-strategy__image-banner {
  text-align: center;
  padding: 40px 0;
  background-color: #000000;
}

.page-resources-sports-betting-strategy__responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-sports-betting-strategy__image-spacing {
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-resources-sports-betting-strategy__content-section,
.page-resources-sports-betting-strategy__strategy-guide,
.page-resources-sports-betting-strategy__advanced-strategies,
.page-resources-sports-betting-strategy__responsible-betting,
.page-resources-sports-betting-strategy__faq-section,
.page-resources-sports-betting-strategy__cta-bottom {
  padding: 60px 20px;
  background-color: #000000;
  color: #ffffff;
}

.page-resources-sports-betting-strategy__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-resources-sports-betting-strategy__sub-section-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-sports-betting-strategy__text-block p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-sports-betting-strategy__text-block ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #f0f0f0;
}

.page-resources-sports-betting-strategy__text-block li {
  margin-bottom: 8px;
}

.page-resources-sports-betting-strategy__text-block a {
  color: #FFD700; /* Gold links */
  text-decoration: underline;
}

.page-resources-sports-betting-strategy__text-block a:hover {
  color: #e6c200;
}

/* FAQ Section Styling */
.page-resources-sports-betting-strategy__faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid #8B0000; /* Red border */
}

.page-resources-sports-betting-strategy__faq-item {
  border-bottom: 1px solid #8B0000; /* Red border */
}

.page-resources-sports-betting-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700; /* Gold question text */
  cursor: pointer;
  transition: color 0.3s ease;
}

.page-resources-sports-betting-strategy__faq-question:hover {
  color: #e6c200;
}

.page-resources-sports-betting-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700; /* Gold toggle */
}

.page-resources-sports-betting-strategy__faq-item.active .page-resources-sports-betting-strategy__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
}

.page-resources-sports-betting-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px; /* Adjust padding for collapsed state */
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-sports-betting-strategy__faq-item.active .page-resources-sports-betting-strategy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 15px 25px; /* Padding for expanded state */
}

.page-resources-sports-betting-strategy__faq-answer p {
  margin-bottom: 0; /* Remove extra margin from last paragraph */
  color: #f0f0f0;
}

/* CTA Bottom Styling */
.page-resources-sports-betting-strategy__cta-bottom {
  text-align: center;
  background-color: #8B0000; /* Dark Red background */
  color: #ffffff;
}

.page-resources-sports-betting-strategy__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-resources-sports-betting-strategy__cta-description {
  font-size: 1.15em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-sports-betting-strategy__hero-title {
    font-size: 2.8em;
  }
  .page-resources-sports-betting-strategy__section-title {
    font-size: 2em;
  }
}