.page-sports-football-betting-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--Text-Main); /* Default text color for the page */
  background-color: var(--Background); /* Overall page background */
}

.page-sports-football-betting-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-sports-football-betting-tips__dark-bg {
  background-color: var(--Background);
  color: var(--Text-Main);
}

.page-sports-football-betting-tips__light-bg {
  background-color: var(--Card-B-G);
  color: var(--Text-Main);
}

.page-sports-football-betting-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px; /* Space for content below image */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
}

.page-sports-football-betting-tips__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-sports-football-betting-tips__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-sports-football-betting-tips__hero-content {
  max-width: 900px;
  padding: 0 20px;
  margin-top: 20px; /* Space below image */
  z-index: 1; /* Ensure content is above any potential background elements */
}

.page-sports-football-betting-tips__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: bold;
  color: var(--Text-Main);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-sports-football-betting-tips__lead-text {
  font-size: clamp(1em, 1.5vw, 1.3em);
  color: var(--Text-Secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports-football-betting-tips__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: bold;
  color: var(--Text-Main);
  margin-bottom: 30px;
  text-align: center;
  padding-top: 40px;
}

.page-sports-football-betting-tips__sub-title {
  font-size: clamp(1.4em, 2.2vw, 2em);
  font-weight: bold;
  color: var(--Text-Main);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-sports-football-betting-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: var(--Text-Main);
}

.page-sports-football-betting-tips__highlight {
  color: var(--Gold);
  font-weight: bold;
}

.page-sports-football-betting-tips__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: var(--Text-Main);
}

.page-sports-football-betting-tips__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

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

.page-sports-football-betting-tips__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-sports-football-betting-tips__btn-primary,
.page-sports-football-betting-tips__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports-football-betting-tips__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-sports-football-betting-tips__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--Glow);
}

.page-sports-football-betting-tips__btn-secondary {
  background: transparent;
  color: var(--Text-Main);
  border: 2px solid var(--Border);
}

.page-sports-football-betting-tips__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--Glow);
  border-color: var(--Glow);
}

.page-sports-football-betting-tips__faq-list {
  margin-top: 30px;
}

.page-sports-football-betting-tips__faq-item {
  background-color: var(--Background);
  border: 1px solid var(--Divider);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports-football-betting-tips__faq-item[open] {
  background-color: var(--Deep-Green);
}

.page-sports-football-betting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15em;
  color: var(--Text-Main);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-sports-football-betting-tips__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-sports-football-betting-tips__faq-question:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
}

.page-sports-football-betting-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--Glow);
}

.page-sports-football-betting-tips__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--Text-Secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-sports-football-betting-tips__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important;
  }

  .page-sports-football-betting-tips__main-title {
    font-size: 2.2em;
  }

  .page-sports-football-betting-tips__lead-text {
    font-size: 1em;
  }

  .page-sports-football-betting-tips__section-title {
    font-size: 2em;
    padding-top: 30px;
  }

  .page-sports-football-betting-tips__sub-title {
    font-size: 1.5em;
  }

  .page-sports-football-betting-tips__paragraph,
  .page-sports-football-betting-tips__list-item,
  .page-sports-football-betting-tips__faq-question,
  .page-sports-football-betting-tips__faq-answer {
    font-size: 16px;
  }

  /* Images responsive */
  .page-sports-football-betting-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports-football-betting-tips__section,
  .page-sports-football-betting-tips__card,
  .page-sports-football-betting-tips__container,
  .page-sports-football-betting-tips__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons responsive */
  .page-sports-football-betting-tips__cta-button,
  .page-sports-football-betting-tips__btn-primary,
  .page-sports-football-betting-tips__btn-secondary,
  .page-sports-football-betting-tips a[class*="button"],
  .page-sports-football-betting-tips a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports-football-betting-tips__cta-buttons,
  .page-sports-football-betting-tips__button-group,
  .page-sports-football-betting-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 10px;
  }
}