
        /* style/bookmaker-reviews-top-rated.css */
        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-dark: #111111;
            --text-light: #ffffff;
            --bg-light: #f8f9fa;
            --border-color: #e0e0e0;
            --header-offset: 122px; /* Default for demonstration, actual value from shared.css */
        }

        .page-bookmaker-reviews-top-rated {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }

        .page-bookmaker-reviews-top-rated__hero-section {
            position: relative;
            padding-top: 10px; /* Small top padding, relying on body for header offset */
            padding-bottom: 40px;
            text-align: center;
            background-color: var(--primary-color);
            color: var(--text-light);
            overflow: hidden;
        }

        .page-bookmaker-reviews-top-rated__hero-image-wrapper {
            width: 100%;
            max-height: 500px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .page-bookmaker-reviews-top-rated__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .page-bookmaker-reviews-top-rated__hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-bookmaker-reviews-top-rated__hero-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--text-light);
        }

        .page-bookmaker-reviews-top-rated__hero-description {
            font-size: 1.15rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-bookmaker-reviews-top-rated__cta-button {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--text-light);
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-bookmaker-reviews-top-rated__cta-button:hover {
            background-color: darken(var(--secondary-color), 10%);
            transform: translateY(-2px);
        }

        .page-bookmaker-reviews-top-rated__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .page-bookmaker-reviews-top-rated__section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 40px;
            font-weight: 700;
        }

        .page-bookmaker-reviews-top-rated__text-block {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
            text-align: left;
            color: var(--text-dark);
        }

        .page-bookmaker-reviews-top-rated__bookmakers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
            text-align: left;
        }

        .page-bookmaker-reviews-top-rated__bookmaker-card {
            background-color: var(--text-light);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border: 1px solid var(--border-color);
            min-height: 450px;
        }

        .page-bookmaker-reviews-top-rated__bookmaker-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .page-bookmaker-reviews-top-rated__card-logo {
            width: 150px;
            height: 150px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        .page-bookmaker-reviews-top-rated__card-title {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-bookmaker-reviews-top-rated__card-description {
            font-size: 1rem;
            color: #555;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .page-bookmaker-reviews-top-rated__card-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            white-space: normal;
            word-wrap: break-word;
            margin-top: auto;
        }

        .page-bookmaker-reviews-top-rated__card-button:hover {
            background-color: darken(var(--primary-color), 10%);
        }

        .page-bookmaker-reviews-top-rated__features-list {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-top: 30px;
        }

        .page-bookmaker-reviews-top-rated__feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        .page-bookmaker-reviews-top-rated__feature-icon {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .page-bookmaker-reviews-top-rated__faq-list {
            margin-top: 40px;
            text-align: left;
        }

        .page-bookmaker-reviews-top-rated__faq-item {
            background-color: var(--text-light);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .page-bookmaker-reviews-top-rated__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            user-select: none;
            background-color: var(--bg-light);
            border-bottom: 1px solid var(--border-color);
        }

        .page-bookmaker-reviews-top-rated__faq-question:hover {
            background-color: #f0f0f0;
        }

        .page-bookmaker-reviews-top-rated__faq-question h3 {
            margin: 0;
            pointer-events: none; /* Prevents text selection from interfering with click */
            flex-grow: 1;
        }

        .page-bookmaker-reviews-top-rated__faq-toggle {
            font-size: 1.8rem;
            font-weight: 300;
            line-height: 1;
            margin-left: 15px;
            pointer-events: none; /* Prevents icon from interfering with click */
            color: var(--secondary-color);
        }

        .page-bookmaker-reviews-top-rated__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;
            color: var(--text-dark);
            text-align: left;
        }

        .page-bookmaker-reviews-top-rated__faq-item.active .page-bookmaker-reviews-top-rated__faq-answer {
            max-height: 2000px !important; /* Sufficiently large to show content */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-bookmaker-reviews-top-rated__cta-section {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 80px 20px;
            text-align: center;
        }

        .page-bookmaker-reviews-top-rated__cta-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .page-bookmaker-reviews-top-rated__cta-description {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-bookmaker-reviews-top-rated__cta-buttons-wrapper {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .page-bookmaker-reviews-top-rated__cta-buttons-wrapper .page-bookmaker-reviews-top-rated__cta-button {
            background-color: var(--secondary-color);
        }

        .page-bookmaker-reviews-top-rated__cta-buttons-wrapper .page-bookmaker-reviews-top-rated__cta-button:hover {
            background-color: darken(var(--secondary-color), 15%);
        }

        /* General image responsiveness */
        .page-bookmaker-reviews-top-rated img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .page-bookmaker-reviews-top-rated__hero-section {
                padding-top: 10px !important;
                padding-bottom: 30px;
            }
            .page-bookmaker-reviews-top-rated__hero-title {
                font-size: clamp(2rem, 8vw, 2.8rem);
            }
            .page-bookmaker-reviews-top-rated__hero-description {
                font-size: 1rem;
            }
            .page-bookmaker-reviews-top-rated__cta-button {
                padding: 12px 20px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                margin-bottom: 10px;
            }
            .page-bookmaker-reviews-top-rated__cta-buttons-wrapper {
                flex-direction: column;
                align-items: center;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                padding: 0 15px;
            }
            .page-bookmaker-reviews-top-rated__section {
                padding: 40px 15px;
            }
            .page-bookmaker-reviews-top-rated__section-title {
                font-size: 2rem;
            }
            .page-bookmaker-reviews-top-rated__bookmakers-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .page-bookmaker-reviews-top-rated__bookmaker-card {
                padding: 20px;
                min-height: auto;
            }
            .page-bookmaker-reviews-top-rated__card-title {
                font-size: 1.5rem;
            }
            .page-bookmaker-reviews-top-rated__card-logo {
                width: 120px;
                height: 120px;
            }
            .page-bookmaker-reviews-top-rated__feature-item {
                font-size: 1rem;
            }
            .page-bookmaker-reviews-top-rated__faq-question {
                padding: 15px 20px;
                font-size: 1rem;
            }
            .page-bookmaker-reviews-top-rated__faq-answer {
                padding: 15px 20px !important;
            }
            .page-bookmaker-reviews-top-rated__cta-title {
                font-size: 2rem;
            }
            .page-bookmaker-reviews-top-rated__cta-description {
                font-size: 1rem;
            }
            /* General image and container responsiveness */
            .page-bookmaker-reviews-top-rated img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                box-sizing: border-box !important;
            }
            .page-bookmaker-reviews-top-rated__section,
            .page-bookmaker-reviews-top-rated__card,
            .page-bookmaker-reviews-top-rated__container,
            .page-bookmaker-reviews-top-rated__bookmakers-grid,
            .page-bookmaker-reviews-top-rated__faq-list,
            .page-bookmaker-reviews-top-rated__cta-section {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                overflow-x: hidden !important;
            }
            .page-bookmaker-reviews-top-rated__feature-item {
                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;
                word-break: break-word !important;
            }
            .page-bookmaker-reviews-top-rated__features-list {
                padding: 0 15px !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }
        }
    