/* style/sports-football-betting-guide.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-login-color: #C30808;
  --register-login-font-color: #FFFF00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #017439;
}

.page-sports-football-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background-color: var(--background-light); /* Default body background */
}

.page-sports-football-betting-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  color: var(--text-light);
  background-color: var(--background-dark);
  min-height: 600px;
  overflow: hidden;
}

.page-sports-football-betting-guide__hero-content {
  max-width: 800px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.page-sports-football-betting-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-sports-football-betting-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

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

.page-sports-football-betting-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-sports-football-betting-guide__section {
  padding: 60px 20px;
}

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

.page-sports-football-betting-guide__section-title,
.page-sports-football-betting-guide__cta-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-sports-football-betting-guide__section-description,
.page-sports-football-betting-guide__cta-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports-football-betting-guide__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-sports-football-betting-guide__dark-bg .page-sports-football-betting-guide__section-title,
.page-sports-football-betting-guide__dark-bg .page-sports-football-betting-guide__cta-title {
  color: var(--text-light);
}

.page-sports-football-betting-guide__dark-bg .page-sports-football-betting-guide__section-description,
.page-sports-football-betting-guide__dark-bg .page-sports-football-betting-guide__cta-description {
  color: var(--text-light);
}