/* style/resources-88-football-odds-faq.css */
.page-resources-88-football-odds-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: transparent; /* Inherit from body or shared.css */
}

.page-resources-88-football-odds-faq__dark-bg {
  background-color: #000000; /* Use black background as per shared.css body */
  color: #ffffff; /* Light text for dark background */
}

.page-resources-88-football-odds-faq__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-resources-88-football-odds-faq__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-resources-88-football-odds-faq__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-88-football-odds-faq__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-88-football-odds-faq__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-88-football-odds-faq__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-resources-88-football-odds-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
  display: block;
}

.page-resources-88-football-odds-faq__section {
  padding: 60px 20px;
  background-color: #000000; /* Consistent dark background */
  color: #ffffff;
}

.page-resources-88-football-odds-faq__about-odds-section {
  background-color: #000000;
}

.page-resources-88-football-odds-faq__faq-section {
  background-color: #0d0d0d; /* Slightly different dark shade for contrast */
}

.page-resources-88-football-odds-faq__benefits-section {
  background-color: #000000;
}

.page-resources-88-football-odds-faq__strategy-section {
  background-color: #0d0d0d;
}

.page-resources-88-football-odds-faq__cta-section {
  background-color: #26A9E0; /* Brand primary color for CTA */
  padding: 80px 20px;
  text-align: center;
}

.page-resources-88-football-odds-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-resources-88-football-odds-faq__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}

.page-resources-88-football-odds-faq__section-title.page-resources-88-football-odds-faq__dark-bg-title {
  color: #ffffff;
}

.page-resources-88-football-odds-faq__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-88-football-odds-faq__text-block a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-resources-88-football-odds-faq__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-resources-88-football-odds-faq__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly visible background for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-resources-88-football-odds-faq__faq-item[open] {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-88-football-odds-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  list-style: none; /* For details/summary */
}

.page-resources-88-football-odds-faq__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-88-football-odds-faq__faq-qtext {
  flex-grow: 1;
}

.page-resources-88-football-odds-faq__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-resources-88-football-odds-faq__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-resources-88-football-odds-faq__faq-answer p {
  margin-bottom: 10px;
}

.page-resources-88-football-odds-faq__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

/* Benefits Section */
.page-resources-88-football-odds-faq__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-88-football-odds-faq__benefit-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-resources-88-football-odds-faq__benefit-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-88-football-odds-faq__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-88-football-odds-faq__benefit-card p {
  color: #f0f0f0;
  font-size: 1em;
}

.page-resources-88-football-odds-faq__benefit-card a {
  color: #26A9E0;
  text-decoration: underline;
}

/* Strategy Section */
.page-resources-88-football-odds-faq__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-88-football-odds-faq__list-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #26A9E0;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #ffffff;
}

.page-resources-88-football-odds-faq__list-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-88-football-odds-faq__list-item p {
  color: #f0f0f0;
}

.page-resources-88-football-odds-faq__list-item a {
  color: #26A9E0;
  text-decoration: underline;
}

/* CTA Section */
.page-resources-88-football-odds-faq__cta-container {
  max-width: 800px;
}

.page-resources-88-football-odds-faq__cta-section .page-resources-88-football-odds-faq__section-title {
  color: #FFFFFF; /* White title on brand blue background */
}

.page-resources-88-football-odds-faq__cta-section .page-resources-88-football-odds-faq__text-block {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-resources-88-football-odds-faq__cta-section .page-resources-88-football-odds-faq__text-block a {
  color: #FFFFFF;
}

.page-resources-88-football-odds-faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-resources-88-football-odds-faq__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-88-football-odds-faq__btn-primary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #FFFFFF;
}

.page-resources-88-football-odds-faq__btn-primary:hover {
  background-color: #e0e0e0;
  color: #1a8cc4;
}

.page-resources-88-football-odds-faq__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources-88-football-odds-faq__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-88-football-odds-faq__main-title {
    font-size: 2.8em;
  }

  .page-resources-88-football-odds-faq__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-88-football-odds-faq {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-88-football-odds-faq__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }

  .page-resources-88-football-odds-faq__main-title {
    font-size: 2.2em;
  }

  .page-resources-88-football-odds-faq__intro-text {
    font-size: 1em;
  }

  .page-resources-88-football-odds-faq__section {
    padding: 40px 15px;
  }

  .page-resources-88-football-odds-faq__container {
    padding: 0 10px;
  }

  .page-resources-88-football-odds-faq__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-88-football-odds-faq__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-88-football-odds-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-88-football-odds-faq__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Image responsive rules */
  .page-resources-88-football-odds-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-88-football-odds-faq__hero-image-wrapper,
  .page-resources-88-football-odds-faq__container,
  .page-resources-88-football-odds-faq__benefits-grid,
  .page-resources-88-football-odds-faq__strategy-list,
  .page-resources-88-football-odds-faq__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-88-football-odds-faq__faq-item, .page-resources-88-football-odds-faq__benefit-card, .page-resources-88-football-odds-faq__list-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-88-football-odds-faq__main-title {
    font-size: 1.8em;
  }

  .page-resources-88-football-odds-faq__section-title {
    font-size: 1.5em;
  }

  .page-resources-88-football-odds-faq__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-resources-88-football-odds-faq__faq-answer {
    font-size: 0.95em;
    padding: 0 15px 15px;
  }
}