.page-sports-football {
  color: #333333; /* Default text color for light body background */
}

.page-sports-football__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  background-color: #000;
}

.page-sports-football__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.page-sports-football__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  color: #ffffff;
}

.page-sports-football__hero-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.page-sports-football__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports-football__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-sports-football__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-sports-football__hero-button {
  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, transform 0.2s ease;
}

.page-sports-football__hero-button--primary {
  background-color: #FFD700;
  color: #8B0000;
}

.page-sports-football__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-sports-football__hero-button--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-sports-football__hero-button--secondary:hover {
  background-color: #a00000;
  transform: translateY(-2px);
}

.page-sports-football__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-sports-football__section-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-sports-football__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-sports-football__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
  color: #555555;
}

.page-sports-football__why-choose-section,
.page-sports-football__how-to-bet-section,
.page-sports-football__leagues-section,
.page-sports-football__bet-types-section,
.page-sports-football__strategies-section,
.page-sports-football__promotions-section,
.page-sports-football__mobile-app-section,
.page-sports-football__responsible-gaming-section,
.page-sports-football__faq-section,
.page-sports-football__cta-final-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  margin-bottom: 20px;
}

.page-sports-football__why-choose-section:nth-of-type(even),
.page-sports-football__leagues-section:nth-of-type(even),
.page-sports-football__strategies-section:nth-of-type(even),
.page-sports-football__mobile-app-section:nth-of-type(even),
.page-sports-football__cta-final-section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-sports-football__features-grid,
.page-sports-football__steps-grid,
.page-sports-football__leagues-grid,
.page-sports-football__bet-types-grid,
.page-sports-football__strategy-grid,
.page-sports-football__promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-sports-football__feature-card,
.page-sports-football__step-card,
.page-sports-football__league-card,
.page-sports-football__bet-type-card,
.page-sports-football__strategy-card,
.page-sports-football__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-football__feature-card:hover,
.page-sports-football__step-card:hover,
.page-sports-football__league-card:hover,
.page-sports-football__bet-type-card:hover,
.page-sports-football__strategy-card:hover,
.page-sports-football__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-sports-football__feature-title,
.page-sports-football__step-title,
.page-sports-football__league-title,
.page-sports-football__bet-type-title,
.page-sports-football__strategy-title,
.page-sports-football__promo-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-sports-football__feature-description,
.page-sports-football__step-description,
.page-sports-football__league-description,
.page-sports-football__bet-type-description,
.page-sports-football__strategy-description,
.page-sports-football__promo-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
}

.page-sports-football__step-description a,
.page-sports-football__promo-description a,
.page-sports-football__faq-answer a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

.page-sports-football__step-description a:hover,
.page-sports-football__promo-description a:hover,
.page-sports-football__faq-answer a:hover {
  text-decoration: underline;
}

.page-sports-football__league-image,
.page-sports-football__promo-image {
  width: 100%;
  height: 200px; /* Enforce minimum height for content images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports-football__cta-block {
  text-align: center;
  margin-top: 50px;
  background-color: #FFD700;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-sports-football__cta-text {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-sports-football__cta-button {
  display: inline-block;
  background-color: #8B0000;
  color: #FFD700;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-sports-football__cta-button:hover {
  background-color: #a00000;
  transform: translateY(-2px);
}

.page-sports-football__mobile-app-section {
  background-color: #f0f0f0;
}

.page-sports-football__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.page-sports-football__app-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-sports-football__app-subtitle {
  font-size: 1.8em;
  color: #8B0000;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-sports-football__app-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.page-sports-football__app-download-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-sports-football__app-download-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-sports-football__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.page-sports-football__app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-sports-football__responsible-gaming-section {
  text-align: center;
  background-color: #8B0000;
  color: #ffffff;
  padding: 80px 0;
}

.page-sports-football__responsible-gaming-section .page-sports-football__section-title {
  color: #FFD700;
}

.page-sports-football__responsible-gaming-section .page-sports-football__section-title::after {
  background-color: #FFD700;
}

.page-sports-football__responsible-gaming-section .page-sports-football__section-intro {
  color: #f0f0f0;
}

.page-sports-football__responsible-gaming-link {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-sports-football__responsible-gaming-link:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-sports-football__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-sports-football__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-sports-football__faq-answer {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
}

.page-sports-football__cta-final-section {
  background-color: #FFD700;
  padding: 80px 0;
  text-align: center;
}

.page-sports-football__cta-final-section .page-sports-football__section-title {
  color: #8B0000;
}

.page-sports-football__cta-final-section .page-sports-football__section-title::after {
  background-color: #8B0000;
}

.page-sports-football__cta-final-section .page-sports-football__section-intro {
  color: #8B0000;
  font-weight: 500;
}

.page-sports-football__cta-final-button {
  display: inline-block;
  background-color: #8B0000;
  color: #FFD700;
  padding: 18px 45px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  margin-top: 40px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-sports-football__cta-final-button:hover {
  background-color: #a00000;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports-football__hero-title {
    font-size: 2.8em;
  }

  .page-sports-football__hero-description {
    font-size: 1.1em;
  }

  .page-sports-football__section-title {
    font-size: 2em;
  }

  .page-sports-football__app-content {
    flex-direction: column;
  }

  .page-sports-football__app-image-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-sports-football__hero-section {
    min-height: 500px;
  }

  .page-sports-football__hero-title {
    font-size: 2.2em;
  }

  .page-sports-football__hero-description {
    font-size: 1em;
  }

  .page-sports-football__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports-football__hero-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-sports-football__container {
    padding: 30px 15px;
  }

  .page-sports-football__section-title {
    font-size: 1.8em;
  }

  .page-sports-football__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-sports-football__features-grid,
  .page-sports-football__steps-grid,
  .page-sports-football__leagues-grid,
  .page-sports-football__bet-types-grid,
  .page-sports-football__strategy-grid,
  .page-sports-football__promo-cards-grid {
    grid-template-columns: 1fr;
  }

  .page-sports-football__feature-card,
  .page-sports-football__step-card,
  .page-sports-football__league-card,
  .page-sports-football__bet-type-card,
  .page-sports-football__strategy-card,
  .page-sports-football__promo-card {
    padding: 20px;
  }

  .page-sports-football__cta-block {
    padding: 30px 20px;
  }

  .page-sports-football__cta-text {
    font-size: 1.1em;
  }

  .page-sports-football__cta-button,
  .page-sports-football__app-download-button,
  .page-sports-football__responsible-gaming-link,
  .page-sports-football__cta-final-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-sports-football__app-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all content area images are responsive and not too small */
  .page-sports-football img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
  }

  .page-sports-football__league-image,
  .page-sports-football__promo-image {
    height: auto; /* Allow height to adjust naturally */
    min-height: 200px; /* Still enforce minimum height */
  }

  .page-sports-football__faq-question {
    font-size: 1.1em;
  }

  .page-sports-football__responsible-gaming-section {
    padding: 60px 0;
  }

  .page-sports-football__cta-final-section {
    padding: 60px 0;
  }

  .page-sports-football__cta-final-button {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-sports-football__hero-title {
    font-size: 1.8em;
  }

  .page-sports-football__section-title {
    font-size: 1.5em;
  }

  .page-sports-football__hero-content {
    padding: 20px;
  }

  .page-sports-football__hero-actions {
    gap: 10px;
  }

  .page-sports-football__hero-button {
    width: 90%;
  }

  .page-sports-football__cta-button,
  .page-sports-football__app-download-button,
  .page-sports-football__responsible-gaming-link,
  .page-sports-football__cta-final-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}