.page-sports-football-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main color, suitable for dark body background */
  background-color: #B71C1C; /* Body background color */
}

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

/* Hero Section */
.page-sports-football-betting-guide__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Image first, then content */
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-sports-football-betting-guide__hero-image {
  width: 100%;
  max-height: 675px; /* Max height for desktop hero */
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and text */
}

.page-sports-football-betting-guide__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover for desktop */
  aspect-ratio: 16 / 9; /* Maintain aspect ratio */
  border-radius: 8px;
}

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

.page-sports-football-betting-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  color: #FFD86A; /* Gold color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports-football-betting-guide__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF5E1; /* Text Main color */
}

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

/* General Section Styling */
.page-sports-football-betting-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports-football-betting-guide__section:last-of-type {
  border-bottom: none;
  padding-bottom: 80px;
}

.page-sports-football-betting-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FFD86A; /* Gold color for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-sports-football-betting-guide__content-area {
  background-color: #D32F2F; /* Card BG color */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #FFF5E1; /* Text Main color on Card BG */
}

.page-sports-football-betting-guide__content-area p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-sports-football-betting-guide__content-area strong {
  color: #FFD86A;
}

.page-sports-football-betting-guide__content-area a {
  color: #F4D34D; /* Gold link color */
  text-decoration: underline;
}

.page-sports-football-betting-guide__content-area a:hover {
  color: #FFCC66; /* Lighter gold on hover */
}

.page-sports-football-betting-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.page-sports-football-betting-guide__btn-primary,
.page-sports-football-betting-guide__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-sports-football-betting-guide__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Custom button gradient */
  color: #7A0E0E; /* Deep Red for text on gold button */
  border: 2px solid #F2B544; /* Border color */
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-sports-football-betting-guide__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

.page-sports-football-betting-guide__btn-secondary {
  background-color: #FFF5E1; /* Text Main as background */
  color: #C91F17; /* Main color for text on light button */
  border: 2px solid #C91F17; /* Main color for border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}