
    :root {
        --primary-color: #e44d26; /* A vibrant color for highlights */
        --secondary-color: #333;
        --text-color: #333;
        --light-text-color: #f8f8f8;
        --background-color: #f4f4f4;
        --card-background: #ffffff;
        --border-color: #ddd;
        --accent-color: #007bff; /* For links/buttons */
    }

    .page-774pub-register-online {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--background-color);
        padding-bottom: 40px;
    }

    .page-774pub-register-online__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Hero Section */
    .page-774pub-register-online__hero-section {
        position: relative;
        background-color: #2a2a2a; /* Dark background for contrast */
        color: var(--light-text-color);
        padding: 10px 0 60px 0; /* 10px top padding for offset */
        text-align: center;
        overflow: hidden;
    }

    .page-774pub-register-online__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
    }

    .page-774pub-register-online__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .page-774pub-register-online__hero-title {
        font-size: 3em;
        margin-bottom: 20px;
        color: var(--light-text-color);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-774pub-register-online__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-774pub-register-online__cta-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--light-text-color);
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none; /* Ensure it looks like a button */
        cursor: pointer;
    }

    .page-774pub-register-online__cta-button:hover {
        background-color: #d1421f;
        transform: translateY(-2px);
    }

    /* General Section Styles */
    .page-774pub-register-online__section {
        padding: 60px 0;
        text-align: center;
    }

    .page-774pub-register-online__section--light {
        background-color: var(--background-color);
    }

    .page-774pub-register-online__section--dark {
        background-color: var(--secondary-color);
        color: var(--light-text-color);
    }

    .page-774pub-register-online__section-title {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: var(--secondary-color);
    }

    .page-774pub-register-online__section--dark .page-774pub-register-online__section-title {
        color: var(--light-text-color);
    }

    /* Features/Benefits Grid */
    .page-774pub-register-online__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
        text-align: left;
    }

    .page-774pub-register-online__feature-card {
        background-color: var(--card-background);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box; /* Crucial for list items */
    }

    .page-774pub-register-online__feature-icon {
        width: 200px; /* Min size 200x200px */
        height: 200px;
        margin-bottom: 20px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    .page-774pub-register-online__feature-title {
        font-size: 1.5em;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    .page-774pub-register-online__feature-description {
        font-size: 1em;
        color: var(--text-color);
    }

    /* How to Register Steps */
    .page-774pub-register-online__steps-list {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        max-width: 800px;
    }

    .page-774pub-register-online__step-item {
        background-color: var(--card-background);
        margin-bottom: 25px;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        text-align: left;
        display: flex;
        align-items: center;
        gap: 25px;
        box-sizing: border-box; /* Crucial for list items */
    }

    .page-774pub-register-online__step-number {
        font-size: 2.5em;
        font-weight: bold;
        color: var(--primary-color);
        min-width: 50px;
        text-align: center;
    }

    .page-774pub-register-online__step-content {
        flex-grow: 1;
    }

    .page-774pub-register-online__step-title {
        font-size: 1.8em;
        margin-bottom: 10px;
        color: var(--secondary-color);
    }

    .page-774pub-register-online__step-description {
        font-size: 1.1em;
        color: var(--text-color);
    }

    .page-774pub-register-online__step-image {
        width: 400px; /* Min size 200x200px */
        height: 300px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
        max-width: 100%;
        height: auto;
    }

    /* Game Providers / Payment Methods */
    .page-774pub-register-online__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .page-774pub-register-online__grid-item {
        background-color: var(--card-background);
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-sizing: border-box; /* Crucial for list items */
    }

    .page-774pub-register-online__grid-image {
        width: 200px; /* Min size 200x200px */
        height: 200px;
        object-fit: contain;
        margin-bottom: 15px;
        max-width: 100%;
        height: auto;
    }

    .page-774pub-register-online__grid-title {
        font-size: 1.3em;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    /* FAQ Section */
    .page-774pub-register-online__faq-section {
        background-color: var(--card-background);
        padding: 60px 0;
        text-align: center;
    }

    .page-774pub-register-online__faq-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
    }

    .page-774pub-register-online__faq-item {
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 10px;
    }

    .page-774pub-register-online__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-774pub-register-online__faq-question:hover {
        background-color: #f0f0f0;
    }

    .page-774pub-register-online__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--secondary-color);
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-774pub-register-online__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-774pub-register-online__faq-item.active .page-774pub-register-online__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-774pub-register-online__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        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-color);
    }

    .page-774pub-register-online__faq-item.active .page-774pub-register-online__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 15px !important;
        opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-774pub-register-online__hero-title {
            font-size: 2.2em;
        }

        .page-774pub-register-online__hero-description {
            font-size: 1em;
        }

        .page-774pub-register-online__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-774pub-register-online__section-title {
            font-size: 2em;
        }

        .page-774pub-register-online__features-grid,
        .page-774pub-register-online__grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-774pub-register-online__feature-card,
        .page-774pub-register-online__grid-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for smaller screens */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-774pub-register-online__step-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
            padding: 20px !important; /* Adjust padding for smaller screens */
            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-774pub-register-online__step-image {
            width: 100%;
            height: auto;
        }

        .page-774pub-register-online__step-number {
            font-size: 2em;
            width: 100%;
            text-align: left;
            margin-bottom: 10px;
        }

        .page-774pub-register-online__step-title {
            font-size: 1.5em;
        }

        .page-774pub-register-online__step-description {
            font-size: 1em;
        }

        .page-774pub-register-online__grid-image {
            width: 100%;
            height: auto;
            max-width: 200px; /* Constrain max width for images in grid items */
        }
        
        .page-774pub-register-online__faq-question h3 {
            font-size: 1.1em;
        }

        .page-774pub-register-online__faq-answer {
            padding: 0 10px; /* Adjust padding for mobile */
        }
        .page-774pub-register-online__faq-item.active .page-774pub-register-online__faq-answer {
            padding: 15px 10px !important; /* Adjust padding for mobile */
        }

        /* Ensure all images are responsive */
        .page-774pub-register-online img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-774pub-register-online__hero-background {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }
  