.page-resources-onbet-promotions-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #FFFFFF; /* Explicitly set background for content area if needed, though body is white */
}

.page-resources-onbet-promotions-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-onbet-promotions-guide__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-onbet-promotions-guide__section:nth-of-type(even) {
    background-color: #f8f8f8; /* Light grey background for alternating sections */
}

.page-resources-onbet-promotions-guide__section-title {
    font-size: 36px;
    color: #017439; /* Brand primary color */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-onbet-promotions-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #017439;
    border-radius: 2px;
}

.page-resources-onbet-promotions-guide__text-block {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

/* Hero Section */
.page-resources-onbet-promotions-guide__hero-section {
    background: linear-gradient(135deg, #017439, #005f2f); /* Gradient with brand color */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-resources-onbet-promotions-guide__hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-onbet-promotions-guide__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding-right: 40px;
}

.page-resources-onbet-promotions-guide__hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-resources-onbet-promotions-guide__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #FFFFFF;
}

.page-resources-onbet-promotions-guide__hero-image {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources-onbet-promotions-guide__hero-image img {
    max-width: 100%;
    height: 675px; /* Use HTML specified display height */
    object-fit: cover; /* Cover the area */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block; /* Ensure it behaves as a block element */
}

.page-resources-onbet-promotions-guide__hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: flex-start;
}

/* Buttons */
.page-resources-onbet-promotions-guide__btn-primary,
.page-resources-onbet-promotions-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-resources-onbet-promotions-guide__btn-primary {
    background-color: #017439; /* Brand primary color */
    color: #FFFFFF;
    border: 2px solid #017439;
}

.page-resources-onbet-promotions-guide__btn-primary:hover {
    background-color: #005f2f;
    border-color: #005f2f;
    transform: translateY(-2px);
}

.page-resources-onbet-promotions-guide__btn-secondary {
    background-color: #FFFFFF;
    color: #017439; /* Brand primary color */
    border: 2px solid #017439;
}