:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --button-register-bg: #C30808;
    --button-register-text: #FFFF00;
    --body-bg: #FFFFFF; /* From shared.css, used for context */
}

.page-resources-best-betting-promotions-2024 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Dark text on light body background */
    background-color: var(--body-bg);
}

.page-resources-best-betting-promotions-2024__container {
    max-width: 800px; /* Constrain content width for readability */
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-best-betting-promotions-2024__hero-section {
    background: linear-gradient(135deg, var(--primary-color), #00994d); /* A slightly lighter green for gradient */
    padding: 80px 0;
    color: var(--text-color-light);
    text-align: center;
}

.page-resources-best-betting-promotions-2024__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-color-light);
}

.page-resources-best-betting-promotions-2024__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-color-light);
}

.page-resources-best-betting-promotions-2024__hero-button {
    display: inline-block;
    background-color: var(--button-register-bg);
    color: var(--button-register-text);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    border: 2px solid var(--button-register-text);
}

.page-resources-best-betting-promotions-2024__hero-button:hover {
    background-color: #a70707; /* Slightly darker red */
    border-color: var(--text-color-light);
}

.page-resources-best-betting-promotions-2024__table-of-contents {
    background-color: #f9f9f9;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.page-resources-best-betting-promotions-2024__toc-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.page-resources-best-betting-promotions-2024__toc-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}

.page-resources-best-betting-promotions-2024__toc-list li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-resources-best-betting-promotions-2024__toc-list li a:hover {
    color: #004d26; /* Darker green */
    text-decoration: underline;
}

.page-resources-best-betting-promotions-2024__article-content {
    padding: 40px 0;
}

.page-resources-best-betting-promotions-2024__section {
    margin-bottom: 40px;
}

.page-resources-best-betting-promotions-2024__section-title {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.page-resources-best-betting-promotions-2024__section-subtitle {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-best-betting-promotions-2024__image-full {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-best-betting-promotions-2024__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-resources-best-betting-promotions-2024__list li {
    margin-bottom: 10px;
}

.page-resources-best-betting-promotions-2024__keyword {
    font-weight: bold;
    color: var(--primary-color);
}

.page-resources-best-betting-promotions-2024__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-best-betting-promotions-2024__promo-card {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-best-betting-promotions-2024__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-best-betting-promotions-2024__card-image {
    width: 100%; /* Ensure images fill card width */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-best-betting-promotions-2024__card-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-resources-best-betting-promotions-2024__card-description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
}

.page-resources-best-betting-promotions-2024__card-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-resources-best-betting-promotions-2024__card-button:hover {
    background-color: #004d26;
}

.page-resources-best-betting-promotions-2024__review-card {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-best-betting-promotions-2024__review-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-best-betting-promotions-2024__review-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-best-betting-promotions-2024__review-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-resources-best-betting-promotions-2024__review-features li {
    margin-bottom: 8px;
    color: #444;
}

.page-resources-best-betting-promotions-2024__review-features strong {
    color: var(--primary-color);
}

.page-resources-best-betting-promotions-2024__review-button {
    display: inline-block;
    background-color: var(--button-register-bg);
    color: var(--button-register-text);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 1px solid var(--button-register-text);
}

.page-resources-best-betting-promotions-2024__review-button:hover {
    background-color: #a70707;
}

.page-resources-best-betting-promotions-2024__numbered-list {
    list-style: decimal inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-resources-best-betting-promotions-2024__numbered-list li {
    margin-bottom: 10px;
}

.page-resources-best-betting-promotions-2024__cta-button {
    display: block;
    width: fit-content;
    margin: 30px auto;
    background-color: var(--button-register-bg);
    color: var(--button-register-text);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    border: 2px solid var(--button-register-text);
}

.page-resources-best-betting-promotions-2024__cta-button:hover {
    background-color: #a70707;
    border-color: var(--text-color-light);
}

.page-resources-best-betting-promotions-2024__cta-button--secondary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border: 2px solid var(--text-color-light);
}

.page-resources-best-betting-promotions-2024__cta-button--secondary:hover {
    background-color: #004d26;
    border-color: var(--primary-color);
}

.page-resources-best-betting-promotions-2024__cta-link {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-best-betting-promotions-2024__cta-link:hover {
    color: #004d26;
    text-decoration: underline;
}

.page-resources-best-betting-promotions-2024__faq-item {
    background-color: #f0fdf5; /* Light green background for FAQ */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-best-betting-promotions-2024__faq-question {
    font-size: 1.2em;
    color: var(--primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-best-betting-promotions-2024__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-resources-best-betting-promotions-2024__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-best-betting-promotions-2024__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-resources-best-betting-promotions-2024__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    margin-top: 10px;
}

.page-resources-best-betting-promotions-2024__back-link-wrapper {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.page-resources-best-betting-promotions-2024__back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-resources-best-betting-promotions-2024__back-link:hover {
    color: #004d26;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-best-betting-promotions-2024__hero-title {
        font-size: 2em;
    }

    .page-resources-best-betting-promotions-2024__hero-description {
        font-size: 1em;
    }

    .page-resources-best-betting-promotions-2024__section-title {
        font-size: 1.8em;
    }

    .page-resources-best-betting-promotions-2024__section-subtitle {
        font-size: 1.3em;
    }

    .page-resources-best-betting-promotions-2024__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-best-betting-promotions-2024__toc-list {
        flex-direction: column;
        align-items: center;
    }
}