.page-sports-football-betting-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensure consistency with body background */
}

.page-sports-football-betting-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  background-color: #26A9E0; /* Brand primary color for hero */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-sports-football-betting-tips__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
  padding: 20px;
}

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

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

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

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

.page-sports-football-betting-tips__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-sports-football-betting-tips__btn-primary:hover {
  background-color: #d46a00;
  border-color: #d46a00;
}

.page-sports-football-betting-tips__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0; /* Brand primary color for text */
  border: 2px solid #ffffff;
}

.page-sports-football-betting-tips__btn-secondary:hover {
  background-color: #e0e0e0;
  color: #1a81b2;
  border-color: #e0e0e0;
}

.page-sports-football-betting-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-sports-football-betting-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  display: block;
}

.page-sports-football-betting-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1a1a1a; /* Darker background for content sections */
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-top: -60px; /* Overlap with hero section */
  position: relative;
  z-index: 2;
}

.page-sports-football-betting-tips__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid rgba(38, 169, 224, 0.3);
  padding-bottom: 10px;
}

.page-sports-football-betting-tips__sub-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-sports-football-betting-tips p {
  margin-bottom: 1em;
  color: #f0f0f0;
}

.page-sports-football-betting-tips a {
  color: #26A9E0;
  text-decoration: none;
}

.page-sports-football-betting-tips a:hover {
  text-decoration: underline;
}

.page-sports-football-betting-tips__list {
  list-style: disc inside;
  margin-bottom: 1.5em;
  padding-left: 20px;
  color: #f0f0f0;
}

.page-sports-football-betting-tips__list li {
  margin-bottom: 0.5em;
}

.page-sports-football-betting-tips__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
}

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

.page-sports-football-betting-tips__faq-item {
  background-color: #0d0d0d; /* Slightly lighter dark for FAQ items */
  border: 1px solid #26A9E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports-football-betting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: #0d0d0d;
  list-style: none; /* For details/summary */
}

.page-sports-football-betting-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-sports-football-betting-tips__faq-question:hover {
  background-color: #1a1a1a;
}

.page-sports-football-betting-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-sports-football-betting-tips__faq-item[open] .page-sports-football-betting-tips__faq-toggle {
  transform: rotate(45deg);
}

.page-sports-football-betting-tips__faq-answer {
  padding: 0 25px 20px;
  color: #f0f0f0;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-sports-football-betting-tips__faq-item[open] .page-sports-football-betting-tips__faq-answer {
  max-height: 500px; /* Arbitrary large value for smooth transition */
  transition: max-height 0.5s ease-in;
}

.page-sports-football-betting-tips__faq-answer p {
  margin-top: 10px;
}

.page-sports-football-betting-tips__final-cta {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-sports-football-betting-tips__hero-title {
    font-size: 2em;
  }

  .page-sports-football-betting-tips__hero-description {
    font-size: 1em;
  }

  .page-sports-football-betting-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports-football-betting-tips__btn-primary,
  .page-sports-football-betting-tips__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 0.9em;
  }

  .page-sports-football-betting-tips__content-area {
    padding: 20px 15px;
    margin-top: -30px;
  }

  .page-sports-football-betting-tips__section-title {
    font-size: 1.8em;
  }

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

  .page-sports-football-betting-tips p,
  .page-sports-football-betting-tips li {
    font-size: 0.95em;
  }

  .page-sports-football-betting-tips__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  /* Image responsiveness for mobile */
  .page-sports-football-betting-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-sports-football-betting-tips__hero-image-wrapper,
  .page-sports-football-betting-tips__content-area,
  .page-sports-football-betting-tips__faq-list,
  .page-sports-football-betting-tips__final-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-sports-football-betting-tips__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}