
    :root {
        --primary-color: #FFD700; /* Gold */
        --secondary-color: #1a1a2e; /* Dark Blue */
        --text-light: #f0f0f0;
        --text-dark: #333;
        --background-light: #f9f9f9;
        --background-dark: #16213e;
        --button-hover: #FFC107;
    }

    /* Base styles for the page content, relying on body padding for header offset */
    .page-hi-8823 {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        background-color: var(--background-light);
        overflow-x: hidden;
    }

    /* Sections */
    .page-hi-8823__section {
        padding: 60px 20px;
        box-sizing: border-box;
    }

    .page-hi-8823__section--dark {
        background-color: var(--background-dark);
        color: var(--text-light);
    }

    .page-hi-8823__section-title {
        text-align: center;
        font-size: 2.5em;
        margin-bottom: 40px;
        color: var(--secondary-color);
        font-weight: bold;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .page-hi-8823__section--dark .page-hi-8823__section-title {
        color: var(--primary-color);
    }

    /* Hero Section */
    .page-hi-8823__hero-section {
        background: linear-gradient(135deg, var(--secondary-color), var(--background-dark));
        color: var(--text-light);
        text-align: center;
        padding: 10px 20px 60px; /* Decorative top padding, main offset from body */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 450px;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-hi-8823__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 1;
        max-width: 100%;
        height: auto;
    }

    .page-hi-8823__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-hi-8823__hero-title {
        font-size: 3em;
        margin-bottom: 15px;
        line-height: 1.2;
        color: var(--primary-color);
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .page-hi-8823__hero-subtitle {
        font-size: 1.4em;
        margin-bottom: 30px;
        color: var(--text-light);
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Floating Buttons */
    .page-hi-8823__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-hi-8823__register-button,
    .page-hi-8823__login-button {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        min-width: 120px;
        box-sizing: border-box;
        display: block; /* Ensure it takes full width of its container */
    }

    .page-hi-8823__register-button:hover,
    .page-hi-8823__login-button:hover {
        background-color: var(--button-hover);
        transform: translateY(-2px);
    }

    /* Product Display */
    .page-hi-8823__product-display {
        background-color: var(--background-light);
        text-align: center;
    }

    .page-hi-8823__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .page-hi-8823__product-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        padding: 25px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-hi-8823__product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .page-hi-8823__product-image {
        width: 100%;
        max-width: 400px; /* Max width for images */
        height: 250px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 20px;
        box-sizing: border-box;
        max-width: 100%;
        height: auto;
    }

    .page-hi-8823__product-card h3 {
        font-size: 1.5em;
        color: var(--secondary-color);
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .page-hi-8823__product-card p {
        font-size: 1em;
        color: #666;
        margin-bottom: 0;
    }

    /* Why Choose Us Section */
    .page-hi-8823__why-choose-us-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .page-hi-8823__feature-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        padding: 30px;
        text-align: center;
        box-sizing: border-box;
    }

    .page-hi-8823__feature-icon {
        width: 100%;
        max-width: 250px;
        height: auto;
        margin-bottom: 20px;
    }

    .page-hi-8823__feature-card h3 {
        font-size: 1.4em;
        color: var(--secondary-color);
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .page-hi-8823__feature-card p {
        color: #666;
    }

    /* Promotions Section */
    .page-hi-8823__promotion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .page-hi-8823__promotion-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-hi-8823__promotion-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        box-sizing: border-box;
        max-width: 100%;
        height: auto;
    }

    .page-hi-8823__promotion-content {
        padding: 25px;
    }

    .page-hi-8823__promotion-content h3 {
        font-size: 1.3em;
        color: var(--secondary-color);
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .page-hi-8823__promotion-content p {
        font-size: 0.95em;
        color: #666;
        margin-bottom: 20px;
    }

    .page-hi-8823__promotion-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-hi-8823__promotion-button:hover {
        background-color: var(--button-hover);
    }

    /* Payment & Providers Section */
    .page-hi-8823__partner-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
        justify-items: center;
        align-items: center;
    }

    .page-hi-8823__partner-item {
        text-align: center;
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        box-sizing: border-box;
        width: 100%; /* Ensure full width within grid cell */
    }

    .page-hi-8823__partner-logo {
        width: 100%;
        max-width: 150px;
        height: auto;
        object-fit: contain;
        max-height: 80px; /* Limit height for logos */
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .page-hi-8823__partner-item p {
        font-weight: bold;
        color: var(--secondary-color);
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* FAQ Section */
    .page-hi-8823__faq-section {
        background-color: var(--background-light);
    }

    .page-hi-8823__faq-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .page-hi-8823__faq-item {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .page-hi-8823__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #eee;
        font-size: 1.1em;
        font-weight: bold;
        color: var(--secondary-color);
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-hi-8823__faq-question:hover {
        background-color: #e0e0e0;
    }

    .page-hi-8823__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        pointer-events: none; /* Prevent h3 from intercepting click */
        color: var(--secondary-color);
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .page-hi-8823__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from intercepting click */
        color: var(--secondary-color);
    }

    .page-hi-8823__faq-item.active .page-hi-8823__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-hi-8823__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: #555;
        background-color: #fff;
    }

    .page-hi-8823__faq-item.active .page-hi-8823__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important; /* Active padding */
        opacity: 1;
    }

    .page-hi-8823__faq-answer p {
        margin: 0 0 10px 0;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .page-hi-8823__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* CTA Section */
    .page-hi-8823__cta-section {
        background: linear-gradient(90deg, var(--primary-color), var(--button-hover));
        color: var(--secondary-color);
        text-align: center;
        padding: 80px 20px;
    }

    .page-hi-8823__cta-title {
        font-size: 2.8em;
        margin-bottom: 20px;
        color: var(--secondary-color);
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .page-hi-8823__cta-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .page-hi-8823__cta-button {
        display: inline-block;
        background-color: var(--secondary-color);
        color: var(--primary-color);
        padding: 15px 35px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-hi-8823__cta-button:hover {
        background-color: #0d1222;
        transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .page-hi-8823__section {
            padding: 40px 15px;
        }
        .page-hi-8823__section-title {
            font-size: 2em;
            margin-bottom: 30px;
        }

        .page-hi-8823__hero-section {
            min-height: 350px;
            padding: 10px 15px 40px;
        }
        .page-hi-8823__hero-title {
            font-size: 2.2em;
        }
        .page-hi-8823__hero-subtitle {
            font-size: 1.1em;
        }

        .page-hi-8823__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }
        .page-hi-8823__register-button,
        .page-hi-8823__login-button {
            padding: 10px 20px;
            font-size: 14px;
            min-width: 100px;
        }

        .page-hi-8823__product-grid,
        .page-hi-8823__why-choose-us-grid,
        .page-hi-8823__promotion-grid,
        .page-hi-8823__partner-grid {
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 20px;
            padding: 0 15px;
        }

        .page-hi-8823__product-card,
        .page-hi-8823__feature-card,
        .page-hi-8823__promotion-card,
        .page-hi-8823__partner-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important;
            box-sizing: border-box !important;
        }
        .page-hi-8823__product-card h3,
        .page-hi-8823__feature-card h3,
        .page-hi-8823__promotion-content h3,
        .page-hi-8823__partner-item p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-hi-8823__product-image {
            height: 200px;
        }
        .page-hi-8823__promotion-image {
            height: 180px;
        }

        .page-hi-8823__faq-question {
            padding: 15px 20px;
            font-size: 1em;
        }
        .page-hi-8823__faq-question h3 {
            font-size: 1em;
        }
        .page-hi-8823__faq-answer {
            padding: 0 20px;
        }
        .page-hi-8823__faq-item.active .page-hi-8823__faq-answer {
            padding: 15px 20px !important;
        }

        .page-hi-8823__cta-section {
            padding: 50px 15px;
        }
        .page-hi-8823__cta-title {
            font-size: 2em;
        }
        .page-hi-8823__cta-description {
            font-size: 1em;
        }
        .page-hi-8823__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .page-hi-8823__hero-title {
            font-size: 1.8em;
        }
        .page-hi-8823__hero-subtitle {
            font-size: 0.9em;
        }
        .page-hi-8823__section-title {
            font-size: 1.8em;
        }
        .page-hi-8823__cta-title {
            font-size: 1.8em;
        }
    }
  