/* Base Styles */
.page-sports-football-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text on light body background */
  background-color: #FFFFFF;
}

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

.page-sports-football-betting-guide__section {
  padding: 40px 0;
}

.page-sports-football-betting-guide__section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #017439;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-sports-football-betting-guide__section-title--white {
  color: #FFFFFF;
}

.page-sports-football-betting-guide__text-block {
  margin-bottom: 15px;
  text-align: justify;
}

.page-sports-football-betting-guide__text-block--white {
  color: #FFFFFF;
}

.page-sports-football-betting-guide__highlight {
    font-weight: bold;
    color: #017439;
}

/* Hero Section */
.page-sports-football-betting-guide__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding as shared.css handles body padding */
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.page-sports-football-betting-guide__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.page-sports-football-betting-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover for desktop */
  display: block;
}

.page-sports-football-betting-guide__hero-content {
  padding: 20px;
  max-width: 800px;
  margin-top: -100px; /* Overlap image slightly for visual appeal */
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95); /* Semi-transparent white background */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-sports-football-betting-guide__main-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #017439;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-sports-football-betting-guide__description {
  font-size: clamp(16px, 2vw, 20px);
  color: #333333;
  margin-bottom: 30px;
}

/* CTA Buttons */
.page-sports-football-betting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-sports-football-betting-guide__cta-buttons--center {
  margin-top: 30px;
}

.page-sports-football-betting-guide__btn-primary,
.page-sports-football-betting-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-sports-football-betting-guide__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

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

.page-sports-football-betting-guide__btn-secondary {
  background-color: #017439;
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-sports-football-betting-guide__btn-secondary:hover {
  background-color: #005a2e;
  border-color: #005a2e;
}

.page-sports-football-betting-guide__btn-primary--large,
.page-sports-football-betting-guide__btn-secondary--large {
    padding: 15px 30px;
    font-size: 18px;
}

/* Registration Guide Grid */
.page-sports-football-betting-guide__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-sports-football-betting-guide__step-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-sports-football-betting-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}