
    /* Global styles for the page-phbet-member-account-2 wrapper to handle header offset */
    .page-phbet-member-account-2 {
        padding-top: var(--header-offset, 122px); /* Fallback to 122px if --header-offset is not defined */
        background-color: #1a1a2e; /* Dark background for the page */
        color: #e0e0e0; /* Light text color */
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
    }

    /* Hero Section */
    .page-phbet-member-account-2__hero-section {
        position: relative;
        overflow: hidden;
        color: #ffffff;
        text-align: center;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 400px;
        background: linear-gradient(135deg, #0f0f1a, #2a0a5e);
        border-bottom: 5px solid #ffcc00;
        padding-top: 10px; /* Small decorative padding, actual offset handled by body */
    }

    .page-phbet-member-account-2__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.3;
        max-width: 100%; /* Responsive image */
        height: auto; /* Responsive image */
    }

    .page-phbet-member-account-2__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-phbet-member-account-2__hero-title {
        font-size: 3.2em;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        color: #ffcc00;
        line-height: 1.2;
    }

    .page-phbet-member-account-2__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #ffffff;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-phbet-member-account-2__button {
        display: inline-block;
        background-color: #ffcc00;
        color: #1a1a2e;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-phbet-member-account-2__button:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    /* Section Styles */
    .page-phbet-member-account-2__section {
        padding: 80px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-phbet-member-account-2__section--dark {
        background-color: #120d20;
    }

    .page-phbet-member-account-2__section--light {
        background-color: #2a0a5e;
    }

    .page-phbet-member-account-2__section-title {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: #ffcc00;
        position: relative;
        padding-bottom: 15px;
    }

    .page-phbet-member-account-2__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #ffcc00;
        border-radius: 2px;
    }

    .page-phbet-member-account-2__section-description {
        font-size: 1.1em;
        margin-bottom: 50px;
        color: #ccc;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Feature Grid */
    .page-phbet-member-account-2__feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-phbet-member-account-2__feature-card {
        background-color: #1a1a2e;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #333;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-phbet-member-account-2__feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-phbet-member-account-2__feature-icon {
        width: 200px; /* Min size 200x200px */
        height: 200px;
        margin-bottom: 20px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .page-phbet-member-account-2__feature-title {
        font-size: 1.6em;
        color: #ffcc00;
        margin-bottom: 15px;
    }

    .page-phbet-member-account-2__feature-description {
        font-size: 1em;
        color: #e0e0e0;
    }

    /* Steps List */
    .page-phbet-member-account-2__steps-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
        list-style: none;
        padding: 0;
        margin-top: 40px;
    }

    .page-phbet-member-account-2__step-item {
        background-color: #1a1a2e;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 25px;
        border: 1px solid #333;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-phbet-member-account-2__step-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
    }

    .page-phbet-member-account-2__step-number {
        font-size: 2.5em;
        font-weight: bold;
        color: #ffcc00;
        flex-shrink: 0;
        line-height: 1;
        margin-top: -10px;
    }

    .page-phbet-member-account-2__step-content {
        flex-grow: 1;
    }

    .page-phbet-member-account-2__step-title {
        font-size: 1.8em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-phbet-member-account-2__step-description {
        font-size: 1.1em;
        color: #e0e0e0;
    }

    /* FAQ Section */
    .page-phbet-member-account-2__faq-section {
        background-color: #120d20;
        padding: 80px 20px;
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
        border-top: 5px solid #ffcc00;
    }

    .page-phbet-member-account-2__faq-title {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: #ffcc00;
        position: relative;
        padding-bottom: 15px;
    }

    .page-phbet-member-account-2__faq-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #ffcc00;
        border-radius: 2px;
    }

    .page-phbet-member-account-2__faq-container {
        margin-top: 40px;
        text-align: left;
    }

    .page-phbet-member-account-2__faq-item {
        margin-bottom: 15px;
        border: 1px solid #333;
        border-radius: 8px;
        overflow: hidden;
        background-color: #1a1a2e;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-phbet-member-account-2__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #2a0a5e;
        color: #ffcc00;
        cursor: pointer;
        user-select: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-phbet-member-account-2__faq-question:hover {
        background-color: #3b1b7a;
    }

    .page-phbet-member-account-2__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #ffcc00;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-phbet-member-account-2__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-phbet-member-account-2__faq-item.active .page-phbet-member-account-2__faq-toggle {
        transform: rotate(45deg);
    }

    .page-phbet-member-account-2__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #e0e0e0;
        font-size: 1.05em;
    }

    .page-phbet-member-account-2__faq-item.active .page-phbet-member-account-2__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important; /* Final padding */
        opacity: 1;
    }

    /* General responsive adjustments */
    @media (max-width: 1024px) {
        .page-phbet-member-account-2__hero-title {
            font-size: 2.8em;
        }
        .page-phbet-member-account-2__section-title,
        .page-phbet-member-account-2__faq-title {
            font-size: 2.2em;
        }
    }

    @media (max-width: 768px) {
        .page-phbet-member-account-2__hero-section {
            padding: 40px 15px;
            min-height: 300px;
        }
        .page-phbet-member-account-2__hero-title {
            font-size: 2.2em;
        }
        .page-phbet-member-account-2__hero-description {
            font-size: 1em;
        }
        .page-phbet-member-account-2__button {
            padding: 12px 25px;
            font-size: 0.9em;
        }
        .page-phbet-member-account-2__section {
            padding: 60px 15px;
        }
        .page-phbet-member-account-2__section-title,
        .page-phbet-member-account-2__faq-title {
            font-size: 2em;
        }
        .page-phbet-member-account-2__section-description {
            font-size: 1em;
        }
        .page-phbet-member-account-2__feature-card {
            padding: 25px;
        }
        .page-phbet-member-account-2__feature-title {
            font-size: 1.4em;
        }
        .page-phbet-member-account-2__step-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 25px;
            gap: 15px;
        }
        .page-phbet-member-account-2__step-number {
            font-size: 2em;
            margin-top: 0;
        }
        .page-phbet-member-account-2__step-title {
            font-size: 1.6em;
        }
        .page-phbet-member-account-2__step-description {
            font-size: 1em;
        }
        .page-phbet-member-account-2__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }
        .page-phbet-member-account-2__faq-question h3 {
            font-size: 1.1em;
        }
        .page-phbet-member-account-2__faq-answer {
            padding: 0 20px;
            font-size: 0.95em;
        }
        .page-phbet-member-account-2__faq-item.active .page-phbet-member-account-2__faq-answer {
            padding: 15px 20px !important;
        }

        /* List item responsiveness */
        .page-phbet-member-account-2__feature-grid > * { /* Targets direct children of feature-grid, i.e., feature-card */
            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-phbet-member-account-2__feature-grid {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-phbet-member-account-2__steps-list > * { /* Targets direct children of steps-list, i.e., step-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;
        }
        .page-phbet-member-account-2__steps-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-phbet-member-account-2__feature-icon {
            max-width: 100%;
            height: auto;
        }
    }

    @media (max-width: 480px) {
        .page-phbet-member-account-2__hero-title {
            font-size: 1.8em;
        }
        .page-phbet-member-account-2__section-title,
        .page-phbet-member-account-2__faq-title {
            font-size: 1.8em;
        }
        .page-phbet-member-account-2__feature-title {
            font-size: 1.2em;
        }
        .page-phbet-member-account-2__step-title {
            font-size: 1.4em;
        }
        .page-phbet-member-account-2__faq-question {
            font-size: 1em;
        }
        .page-phbet-member-account-2__faq-question h3 {
            font-size: 1em;
        }
        .page-phbet-member-account-2__faq-toggle {
            font-size: 1.5em;
        }
        .page-phbet-member-account-2__faq-answer {
            font-size: 0.9em;
        }
    }
  