
        :root {
            --page-promotions-free-bets-primary-color: #26A9E0;
            --page-promotions-free-bets-secondary-color: #FFFFFF;
            --page-promotions-free-bets-login-color: #EA7C07;
            --page-promotions-free-bets-background-color: #FFFFFF;
            --page-promotions-free-bets-text-color: #333333;
            --page-promotions-free-bets-dark-text-color: #000000;
            --page-promotions-free-bets-light-text-color: #ffffff;
            --page-promotions-free-bets-border-color: #e0e0e0;
        }

        .page-promotions-free-bets {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--page-promotions-free-bets-text-color);
            background-color: var(--page-promotions-free-bets-background-color);
        }

        .page-promotions-free-bets__hero-section {
            position: relative;
            overflow: hidden;
            padding-top: 10px; /* Rely on body padding for header offset */
            padding-bottom: 40px;
            text-align: center;
            background-color: var(--page-promotions-free-bets-primary-color);
            color: var(--page-promotions-free-bets-light-text-color);
        }

        .page-promotions-free-bets__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 400px;
            margin-bottom: 20px;
        }

        .page-promotions-free-bets__hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-promotions-free-bets__main-title {
            font-size: clamp(2em, 4vw, 3.2em);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--page-promotions-free-bets-light-text-color);
        }

        .page-promotions-free-bets__hero-description {
            font-size: 1.1em;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-promotions-free-bets__cta-button {
            display: inline-block;
            background-color: var(--page-promotions-free-bets-login-color);
            color: var(--page-promotions-free-bets-light-text-color);
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-promotions-free-bets__cta-button:hover {
            background-color: #c96706;
            transform: translateY(-2px);
        }

        .page-promotions-free-bets__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-promotions-free-bets__section--light-bg {
            background-color: var(--page-promotions-free-bets-background-color);
            color: var(--page-promotions-free-bets-text-color);
        }

        .page-promotions-free-bets__section--dark-bg {
            background-color: var(--page-promotions-free-bets-primary-color);
            color: var(--page-promotions-free-bets-light-text-color);
        }

        .page-promotions-free-bets__section-title {
            font-size: 2.2em;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            color: var(--page-promotions-free-bets-dark-text-color);
        }

        .page-promotions-free-bets__section--dark-bg .page-promotions-free-bets__section-title {
            color: var(--page-promotions-free-bets-light-text-color);
        }

        .page-promotions-free-bets__content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .page-promotions-free-bets__card {
            background-color: var(--page-promotions-free-bets-secondary-color);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: left;
            transition: transform 0.3s ease;
            border: 1px solid var(--page-promotions-free-bets-border-color);
            color: var(--page-promotions-free-bets-text-color);
        }

        .page-promotions-free-bets__card:hover {
            transform: translateY(-5px);
        }

        .page-promotions-free-bets__card-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            display: block;
            object-fit: contain;
        }

        .page-promotions-free-bets__card-title {
            font-size: 1.5em;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--page-promotions-free-bets-primary-color);
        }

        .page-promotions-free-bets__card-text {
            font-size: 1em;
            margin-bottom: 20px;
        }

        .page-promotions-free-bets__card-button {
            display: inline-block;
            background-color: var(--page-promotions-free-bets-primary-color);
            color: var(--page-promotions-free-bets-light-text-color);
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-promotions-free-bets__card-button:hover {
            background-color: #1e87bb;
        }

        .page-promotions-free-bets__list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .page-promotions-free-bets__list-item {
            background-color: var(--page-promotions-free-bets-secondary-color);
            border: 1px solid var(--page-promotions-free-bets-border-color);
            border-radius: 8px;
            margin-bottom: 15px;
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            color: var(--page-promotions-free-bets-text-color);
            box-sizing: border-box;
        }

        .page-promotions-free-bets__list-icon {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
            object-fit: contain;
        }

        .page-promotions-free-bets__list-content h3 {
            font-size: 1.3em;
            margin-top: 0;
            margin-bottom: 10px;
            color: var(--page-promotions-free-bets-primary-color);
        }

        .page-promotions-free-bets__list-content p {
            font-size: 0.95em;
            margin-bottom: 0;
        }

        .page-promotions-free-bets__faq-section {
            background-color: #f9f9f9;
        }

        .page-promotions-free-bets__faq-item {
            background-color: var(--page-promotions-free-bets-secondary-color);
            border: 1px solid var(--page-promotions-free-bets-border-color);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            color: var(--page-promotions-free-bets-text-color);
        }

        .page-promotions-free-bets__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1em;
            color: var(--page-promotions-free-bets-dark-text-color);
            user-select: none;
            background-color: #f0f8ff;
            transition: background-color 0.3s ease;
        }

        .page-promotions-free-bets__faq-question:hover {
            background-color: #e6f3ff;
        }

        .page-promotions-free-bets__faq-question h3 {
            margin: 0;
            font-size: 1.1em;
            color: inherit;
            pointer-events: none; /* Prevent h3 from intercepting click */
        }

        .page-promotions-free-bets__faq-toggle {
            font-size: 1.5em;
            line-height: 1;
            pointer-events: none; /* Prevent toggle from intercepting click */
            transition: transform 0.3s ease;
        }

        .page-promotions-free-bets__faq-item.active .page-promotions-free-bets__faq-toggle {
            transform: rotate(45deg);
        }

        .page-promotions-free-bets__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        }

        .page-promotions-free-bets__faq-item.active .page-promotions-free-bets__faq-answer {
            max-height: 2000px !important; /* Use !important to ensure override */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-promotions-free-bets__full-width-image {
            width: 100%;
            height: auto;
            display: block;
            margin-bottom: 30px;
            object-fit: cover;
            border-radius: 10px;
        }

        /* General image responsiveness */
        .page-promotions-free-bets img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .page-promotions-free-bets__section {
                padding: 50px 20px;
            }

            .page-promotions-free-bets__section-title {
                font-size: 2em;
            }

            .page-promotions-free-bets__card-title {
                font-size: 1.3em;
            }

            .page-promotions-free-bets__main-title {
                font-size: clamp(1.8em, 3.5vw, 2.8em);
            }
        }

        @media (max-width: 768px) {
            .page-promotions-free-bets {
                font-size: 16px;
                line-height: 1.6;
            }

            .page-promotions-free-bets__hero-section {
                padding-top: 10px !important; /* Fixed header offset handled by body, this is decorative */
                padding-bottom: 30px;
            }

            .page-promotions-free-bets__main-title {
                font-size: clamp(1.6em, 7vw, 2.5em);
                margin-bottom: 10px;
            }

            .page-promotions-free-bets__hero-description {
                font-size: 1em;
                margin-bottom: 20px;
                padding: 0 15px;
            }

            .page-promotions-free-bets__cta-button {
                padding: 12px 20px;
                font-size: 1em;
                max-width: 100% !important;
                width: calc(100% - 30px) !important; /* Account for padding on container */
                margin: 0 15px;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-promotions-free-bets__section {
                padding: 40px 15px;
            }

            .page-promotions-free-bets__section-title {
                font-size: 1.8em;
                margin-bottom: 30px;
            }

            .page-promotions-free-bets__content-grid {
                grid-template-columns: 1fr;
            }

            .page-promotions-free-bets__card {
                padding: 25px;
            }

            .page-promotions-free-bets__card-icon {
                width: 60px;
                height: 60px;
            }

            .page-promotions-free-bets__card-title {
                font-size: 1.2em;
            }

            .page-promotions-free-bets__card-text {
                font-size: 0.9em;
            }

            .page-promotions-free-bets__card-button {
                padding: 8px 15px;
                font-size: 0.9em;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-promotions-free-bets__list-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 15px;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
            }

            .page-promotions-free-bets__list-icon {
                margin-bottom: 10px;
            }

            .page-promotions-free-bets__faq-question {
                padding: 15px 20px;
                font-size: 1em;
            }

            .page-promotions-free-bets__faq-question h3 {
                font-size: 1em;
            }

            .page-promotions-free-bets__faq-answer {
                padding: 15px 20px !important;
            }

            .page-promotions-free-bets img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                box-sizing: border-box !important;
            }

            .page-promotions-free-bets__full-width-image {
                padding: 0 15px;
                box-sizing: border-box !important;
            }

            /* Ensure all containers handle overflow */
            .page-promotions-free-bets__hero-content,
            .page-promotions-free-bets__section,
            .page-promotions-free-bets__content-grid,
            .page-promotions-free-bets__card,
            .page-promotions-free-bets__list,
            .page-promotions-free-bets__faq-section,
            .page-promotions-free-bets__faq-item {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
        }
    