
    .page-f1686vip {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f5f7fa;
        padding-top: var(--header-offset, 122px); /* Fallback for body padding if not present in shared.css */
    }

    .page-f1686vip__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    /* Hero Section */
    .page-f1686vip__hero-section {
        position: relative;
        text-align: center;
        color: white;
        padding: 10px 0 60px 0; /* Small decorative padding-top, relying on body for main offset */
        background: linear-gradient(135deg, #4a00e0, #8e2de2);
        overflow: hidden;
        margin-bottom: 40px;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .page-f1686vip__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.2;
    }

    .page-f1686vip__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
    }

    .page-f1686vip__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
        color: #fff; /* Ensure high contrast */
        word-wrap: break-word; /* Ensure title breaks on mobile */
    }

    .page-f1686vip__hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #eee; /* Ensure high contrast */
        text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    }

    .page-f1686vip__promotion-button {
        display: inline-block;
        background-color: #ffcc00;
        color: #333;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .page-f1686vip__promotion-button:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

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

    .page-f1686vip__floating-button {
        background-color: #ffcc00;
        color: #333;
        border: none;
        padding: 12px 20px;
        border-radius: 30px;
        font-size: 1em;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        min-width: 120px;
        text-align: center;
    }

    .page-f1686vip__floating-button:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    /* Section Styling */
    .page-f1686vip__section {
        background-color: #fff;
        padding: 40px 20px;
        margin-bottom: 30px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        box-sizing: border-box;
    }

    .page-f1686vip__section-title {
        font-size: 2em;
        color: #4a00e0;
        text-align: center;
        margin-bottom: 30px;
        position: relative;
    }

    .page-f1686vip__section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background-color: #8e2de2;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .page-f1686vip__text-content {
        max-width: 800px;
        margin: 0 auto 20px auto;
        text-align: center;
    }

    .page-f1686vip__text-content p {
        margin-bottom: 15px;
        color: #555;
    }

    /* Product Grid */
    .page-f1686vip__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-f1686vip__product-item {
        background-color: #f9f9f9;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-f1686vip__product-item:hover {
        transform: translateY(-5px);
    }

    .page-f1686vip__product-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-f1686vip__product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .page-f1686vip__product-content {
        padding: 20px;
    }

    .page-f1686vip__product-title {
        font-size: 1.4em;
        color: #4a00e0;
        margin-bottom: 10px;
    }

    .page-f1686vip__product-description {
        font-size: 0.95em;
        color: #666;
    }

    /* List sections (Providers, Payments) */
    .page-f1686vip__list-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .page-f1686vip__list-item {
        background-color: #f9f9f9;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 1px 5px rgba(0,0,0,0.05);
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-f1686vip__list-item-image-wrapper {
        width: 100%;
        height: 100px; /* Adjust height as needed, min 200x200 for actual images */
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .page-f1686vip__list-item-image {
        max-width: 100%;
        max-height: 100%;
        height: auto;
        object-fit: contain;
    }

    .page-f1686vip__list-item-text {
        font-weight: bold;
        color: #555;
    }

    /* Promotions */
    .page-f1686vip__promotion-card {
        background: linear-gradient(45deg, #f06, #ff9a9e);
        color: white;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        margin-top: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .page-f1686vip__promotion-title {
        font-size: 2.2em;
        margin-bottom: 15px;
        color: #fff;
    }

    .page-f1686vip__promotion-description {
        font-size: 1.1em;
        margin-bottom: 25px;
        color: #eee;
    }

    /* FAQ Section */
    .page-f1686vip__faq-section {
        background-color: #fff;
        padding: 40px 20px;
        margin-bottom: 30px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        box-sizing: border-box;
    }

    .page-f1686vip__faq-title {
        font-size: 2em;
        color: #4a00e0;
        text-align: center;
        margin-bottom: 30px;
        position: relative;
    }

    .page-f1686vip__faq-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background-color: #8e2de2;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .page-f1686vip__faq-item {
        border-bottom: 1px solid #eee;
        margin-bottom: 10px;
    }

    .page-f1686vip__faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .page-f1686vip__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        color: #333;
        transition: color 0.3s ease;
    }

    .page-f1686vip__faq-question:hover {
        color: #4a00e0;
    }

    .page-f1686vip__faq-question h3 {
        margin: 0;
        font-size: 1.15em;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click event */
        word-wrap: break-word; /* Ensure text breaks */
        overflow-wrap: break-word;
    }

    .page-f1686vip__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        margin-left: 15px;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
        transition: transform 0.3s ease;
    }

    .page-f1686vip__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px; /* 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;
    }

    .page-f1686vip__faq-answer p {
        margin-bottom: 15px;
    }

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

    .page-f1686vip__faq-item.active .page-f1686vip__faq-toggle {
        transform: rotate(45deg); /* Rotate '+' to 'x' */
    }

    /* Call to Action */
    .page-f1686vip__cta-section {
        text-align: center;
        padding: 50px 20px;
        background-color: #4a00e0;
        color: white;
        border-radius: 8px;
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .page-f1686vip__cta-title {
        font-size: 2.5em;
        margin-bottom: 20px;
        color: #fff;
    }

    .page-f1686vip__cta-text {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #eee;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-f1686vip__hero-title {
            font-size: 2em;
        }

        .page-f1686vip__hero-subtitle {
            font-size: 1em;
        }

        .page-f1686vip__section-title,
        .page-f1686vip__faq-title,
        .page-f1686vip__promotion-title {
            font-size: 1.7em;
        }

        .page-f1686vip__cta-title {
            font-size: 2em;
        }

        .page-f1686vip__cta-text {
            font-size: 1em;
        }

        .page-f1686vip__product-grid,
        .page-f1686vip__list-grid {
            grid-template-columns: 1fr; /* Single column on mobile */
        }

        .page-f1686vip__product-item,
        .page-f1686vip__list-item {
            width: 100% !important; /* Force full width for list items */
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important; /* Adjust padding for mobile */
        }

        .page-f1686vip__list-item-image-wrapper {
            height: 150px; /* Adjust height for better display on mobile */
        }

        .page-f1686vip__hero-section,
        .page-f1686vip__section,
        .page-f1686vip__faq-section,
        .page-f1686vip__cta-section {
            padding: 20px 15px; /* Adjust section padding */
        }

        .page-f1686vip__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            bottom: 15px;
            justify-content: space-around;
        }

        .page-f1686vip__floating-button {
            flex: 1;
            margin: 0 5px;
            min-width: unset;
        }

        .page-f1686vip__faq-question h3 {
            font-size: 1em; /* Smaller font for questions on mobile */
        }

        .page-f1686vip__faq-answer {
            padding: 0 10px; /* Adjust padding for mobile */
        }

        .page-f1686vip__faq-item.active .page-f1686vip__faq-answer {
            padding: 15px 10px !important; /* Adjusted active padding for mobile */
        }

        /* Ensure all images are responsive */
        .page-f1686vip__product-image,
        .page-f1686vip__list-item-image,
        .page-f1686vip__hero-background {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-f1686vip__product-image-wrapper,
        .page-f1686vip__list-item-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }

        .page-f1686vip__text-content p {
            text-align: left; /* Adjust text alignment for mobile readability */
        }
    }
  