:root {
    --primary-color: #017439;
    --secondary-color: #00562a; /* Slightly darker green for hover */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-color-light: #ffffff;
    --background-color-dark: #017439; /* For dark sections */
    --border-color: #e0e0e0;
}

.page-sports-football-betting-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-color-light);
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-sports-football-betting-guide__section {
    padding: 60px 0;
    text-align: center;
}

.page-sports-football-betting-guide__section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: bold;
}

.page-sports-football-betting-guide__section-title--white {
    color: var(--text-color-light);
}

.page-sports-football-betting-guide__sub-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-sports-football-betting-guide__paragraph {
    font-size: 17px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports-football-betting-guide__paragraph--white {
    color: var(--text-color-light);
}

.page-sports-football-betting-guide__link--white {
    color: var(--text-color-light);
    text-decoration: underline;
}

.page-sports-football-betting-guide__link--white:hover {
    color: var(--primary-color);
}

/* Hero Section */
.page-sports-football-betting-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px; 
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); /* Gradient background for visual appeal */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-sports-football-betting-guide__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure content is above any background effects */
}

.page-sports-football-betting-guide__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-sports-football-betting-guide__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-sports-football-betting-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-color-light);
}

.page-sports-football-betting-guide__main-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-sports-football-betting-guide__subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-color-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-sports-football-betting-guide__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color); /* Overriding custom colors for contrast */
    color: var(--text-color-light); /* White text for contrast */
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--text-color-light); /* White border for emphasis */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-sports-football-betting-guide__cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* General Content Wrapper */
.page-sports-football-betting-guide__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-sports-football-betting-guide__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-sports-football-betting-guide__text-content {
    flex: 1;
}

.page-sports-football-betting-guide__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sports-football-betting-guide__image-wrapper--full-width {
    flex: none;
    width: 100%;
    margin-top: 40px;
}

.page-sports-football-betting-guide__image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-sports-football-betting-guide__ordered-list,
.page-sports-football-betting-guide__unordered-list {
    list-style-position: inside;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.page-sports-football-betting-guide__unordered-list--white {
    color: var(--text-color-light);
}

.page-sports-football-betting-guide__list-item {
    font-size: 17px;
    margin-bottom: 10px;
}

/* Bet Types Section */
.page-sports-football-betting-guide__bet-types .page-sports-football-betting-guide__paragraph {
    margin-bottom: 30px;
}

.page-sports-football-betting-guide__bet-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}