
    /* General styling for the page */
    .page-8k8-member {
        font-family: Arial, sans-serif;
        color: #f0f0f0;
        background-color: #1a1a1a;
        line-height: 1.6;
        padding-bottom: 40px; /* Space for footer */
    }

    /* Hero Section */
    .page-8k8-member__hero-section {
        position: relative;
        padding: 10px 20px 80px; /* Small top padding for aesthetics, relying on body for header offset */
        text-align: center;
        overflow: hidden;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 500px; /* Minimum height for hero */
    }

    .page-8k8-member__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        filter: brightness(0.6); /* Allowed for background dimming, not color change */
    }

    .page-8k8-member__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-8k8-member__hero-title {
        font-size: 2.8em;
        margin-bottom: 20px;
        color: #ffcc00; /* Gold color for headings */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-member__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    /* Sections */
    .page-8k8-member__section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-8k8-member__section:nth-of-type(even) {
        background-color: #222222;
    }

    .page-8k8-member__section-title {
        font-size: 2.2em;
        margin-bottom: 40px;
        color: #ffcc00;
    }

    .page-8k8-member__section-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    /* Image styling */
    .page-8k8-member__image-container {
        width: 100%;
        max-width: 800px;
        margin: 40px auto;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-8k8-member__image {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* List styling */
    .page-8k8-member__list {
        list-style: none;
        padding: 0;
        margin: 0 auto 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 1000px;
        box-sizing: border-box; /* For the container */
    }

    .page-8k8-member__list-item {
        background-color: #2a2a2a;
        border: 1px solid #444;
        border-radius: 8px;
        padding: 25px;
        flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
        min-width: 280px; /* Minimum width for item */
        text-align: left;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for list items */
        color: #f0f0f0;
    }

    .page-8k8-member__list-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-member__list-item h3 {
        color: #ffcc00;
        font-size: 1.3em;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .page-8k8-member__ordered-list {
        list-style: decimal;
        padding-left: 25px;
        text-align: left;
        max-width: 800px;
        margin: 0 auto 30px;
        color: #f0f0f0;
    }

    .page-8k8-member__ordered-list-item {
        margin-bottom: 15px;
        padding-left: 10px;
        box-sizing: border-box;
    }

    /* Buttons */
    .page-8k8-member__button-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-8k8-member__button {
        background-color: #ffcc00;
        color: #1a1a1a;
        padding: 15px 30px;
        border: none;
        border-radius: 5px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-decoration: none; /* For anchor tags acting as buttons */
        display: inline-block;
    }

    .page-8k8-member__button:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-8k8-member__faq-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
    }

    .page-8k8-member__faq-item {
        background-color: #2a2a2a;
        border: 1px solid #444;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

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

    .page-8k8-member__faq-question:hover {
        background-color: #444;
    }

    .page-8k8-member__faq-question h3 {
        margin: 0;
        color: #ffcc00;
        font-size: 1em; /* Adjust to fit within the question bar */
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-member__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ffcc00;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-8k8-member__faq-item.active .page-8k8-member__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-8k8-member__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        color: #e0e0e0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-8k8-member__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-member__section-title {
            font-size: 2em;
        }
        .page-8k8-member__list-item {
            flex: 1 1 calc(50% - 30px); /* 2 items per row */
        }
    }

    @media (max-width: 768px) {
        .page-8k8-member__hero-section {
            padding: 10px 15px 60px;
            min-height: 400px;
        }
        .page-8k8-member__hero-title {
            font-size: 2em;
        }
        .page-8k8-member__hero-description {
            font-size: 1em;
        }
        .page-8k8-member__section {
            padding: 40px 15px;
        }
        .page-8k8-member__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
        .page-8k8-member__list {
            flex-direction: column;
            gap: 15px;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
        .page-8k8-member__list-item {
            width: 100% !important;
            max-width: 100% !important;
            padding: 20px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-8k8-member__ordered-list {
            width: 100% !important;
            max-width: 100% !important;
            padding-left: 20px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
        .page-8k8-member__ordered-list-item {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-8k8-member__button-group {
            flex-direction: column;
            gap: 15px;
        }
        .page-8k8-member__button {
            width: 100%;
            padding: 12px 20px;
        }
        .page-8k8-member__faq-question {
            font-size: 1.1em;
            padding: 15px 20px;
        }
        .page-8k8-member__faq-answer {
            padding: 0 20px;
        }
        .page-8k8-member__faq-item.active .page-8k8-member__faq-answer {
            padding: 15px 20px !important;
        }
        .page-8k8-member__image-container {
            margin: 20px auto;
        }
        .page-8k8-member__image {
            max-width: 100%; /* Ensure images are responsive */
            height: auto;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-member__hero-title {
            font-size: 1.8em;
        }
        .page-8k8-member__section-title {
            font-size: 1.6em;
        }
        .page-8k8-member__faq-question h3 {
            font-size: 0.9em;
        }
    }
  