
    /* CSS for page-smart-plan-599 */
    :root {
        --primary-color: #e6b800; /* Gold/Yellow from 599jili aesthetic */
        --secondary-color: #333;
        --dark-bg: #1a1a1a;
        --light-text: #f0f0f0;
        --accent-color: #ff4500; /* Orange-red for highlights */
        --border-color: #444;
        --hover-color: #ffd700;
    }

    .page-smart-plan-599 {
        font-family: 'Arial', sans-serif;
        color: var(--light-text);
        background-color: var(--dark-bg);
        line-height: 1.6;
        padding-bottom: 40px; /* Ensure space before footer */
        direction: ltr; /* Explicitly set text direction */
    }

    .page-smart-plan-599__content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }

    /* Hero Section */
    .page-smart-plan-599__hero-section {
        position: relative;
        background-color: #000;
        text-align: center;
        padding: 10px 0 60px; /* Small top padding, main padding at bottom */
        overflow: hidden;
    }

    .page-smart-plan-599__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 0.4;
        max-width: 100%; /* Ensure responsiveness */
        height: auto; /* Maintain aspect ratio */
    }

    .page-smart-plan-599__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .page-smart-plan-599__hero-title {
        font-size: 3.5em;
        color: var(--primary-color);
        margin-bottom: 20px;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
        font-weight: bold;
    }
    
    .page-smart-plan-599__hero-subtitle {
        font-size: 1.5em;
        color: var(--light-text);
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-smart-plan-599__cta-button {
        display: inline-block;
        background-color: var(--accent-color);
        color: #fff;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-smart-plan-599__cta-button:hover {
        background-color: #e03e00;
        transform: translateY(-2px);
    }

    /* General Section Styling */
    .page-smart-plan-599__section {
        padding: 60px 0;
        text-align: center;
    }

    .page-smart-plan-599__section-alt {
        background-color: #222;
    }

    .page-smart-plan-599__section-title {
        font-size: 2.5em;
        color: var(--primary-color);
        margin-bottom: 25px;
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }

    .page-smart-plan-599__section-description {
        font-size: 1.1em;
        color: var(--light-text);
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Features Section */
    .page-smart-plan-599__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-smart-plan-599__feature-item {
        background-color: #2a2a2a;
        padding: 30px;
        border-radius: 10px;
        text-align: left;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        border: 1px solid var(--border-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-smart-plan-599__feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-smart-plan-599__feature-icon {
        width: 100px; /* Display size */
        height: 100px; /* Display size */
        object-fit: contain;
        margin-bottom: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%; /* Ensure responsiveness */
        height: auto; /* Maintain aspect ratio */
    }
    
    .page-smart-plan-599__feature-title {
        font-size: 1.6em;
        color: var(--primary-color);
        margin-bottom: 15px;
        text-align: center;
    }

    .page-smart-plan-599__feature-description {
        font-size: 1em;
        color: var(--light-text);
        text-align: center;
    }

    /* Game Highlights Section */
    .page-smart-plan-599__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-smart-plan-599__game-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        border: 1px solid var(--border-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-smart-plan-599__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-smart-plan-599__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        max-width: 100%; /* Ensure responsiveness */
        height: auto; /* Maintain aspect ratio */
    }

    .page-smart-plan-599__game-info {
        padding: 20px;
    }

    .page-smart-plan-599__game-title {
        font-size: 1.4em;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-smart-plan-599__game-provider {
        font-size: 0.9em;
        color: #aaa;
    }

    /* FAQ Section */
    .page-smart-plan-599__faq-section {
        padding: 60px 0;
        text-align: center;
    }

    .page-smart-plan-599__faq-container {
        max-width: 900px;
        margin: 40px auto 0;
        text-align: left;
    }

    .page-smart-plan-599__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--border-color);
        box-sizing: border-box; /* Ensure proper box model */
    }

    .page-smart-plan-599__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #333;
        color: var(--light-text);
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-smart-plan-599__faq-question:hover {
        background-color: #444;
    }

    .page-smart-plan-599__faq-question h3 {
        margin: 0;
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click event on parent */
        word-wrap: break-word; /* Ensure text breaks within question title */
        overflow-wrap: break-word;
    }

    .page-smart-plan-599__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        color: var(--primary-color);
        pointer-events: none; /* Prevent toggle from blocking click event on parent */
        flex-shrink: 0; /* Prevent toggle from shrinking */
    }

    .page-smart-plan-599__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding matches question, but top/bottom are 0 */
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        color: #ccc;
        font-size: 1em;
        box-sizing: border-box; /* Ensure proper box model */
    }

    .page-smart-plan-599__faq-item.active .page-smart-plan-599__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important; /* Expanded padding */
        opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-smart-plan-599__hero-title {
            font-size: 3em;
        }
        .page-smart-plan-599__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-smart-plan-599__hero-section {
            padding-bottom: 40px;
        }
        .page-smart-plan-599__hero-title {
            font-size: 2.5em;
        }
        .page-smart-plan-599__hero-subtitle {
            font-size: 1.2em;
        }
        .page-smart-plan-599__cta-button {
            padding: 12px 25px;
            font-size: 1.1em;
        }
        .page-smart-plan-599__section {
            padding: 40px 0;
        }
        .page-smart-plan-599__section-title {
            font-size: 1.8em;
        }
        .page-smart-plan-599__section-description {
            font-size: 1em;
            margin-bottom: 30px;
        }

        /* List Item Responsive for features grid */
        .page-smart-plan-599__features-grid,
        .page-smart-plan-599__game-grid {
            grid-template-columns: 1fr; /* Single column layout */
            gap: 20px;
            padding: 0 15px; /* Adjust padding for smaller screens */
        }
        
        .page-smart-plan-599__feature-item,
        .page-smart-plan-599__game-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 25px; /* Adjust padding */
            word-wrap: break-word !important; /* Ensure text breaks */
            overflow-wrap: break-word !important;
        }

        .page-smart-plan-599__feature-icon,
        .page-smart-plan-599__game-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        
        .page-smart-plan-599__game-image {
            height: 180px; /* Slightly smaller image height */
        }

        /* FAQ Responsive */
        .page-smart-plan-599__faq-container {
            padding: 0 15px;
        }
        .page-smart-plan-599__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }
        .page-smart-plan-599__faq-answer {
            padding: 0 20px;
            font-size: 0.95em;
        }
        .page-smart-plan-599__faq-item.active .page-smart-plan-599__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-smart-plan-599__hero-title {
            font-size: 2em;
        }
        .page-smart-plan-599__hero-subtitle {
            font-size: 1em;
        }
        .page-smart-plan-599__cta-button {
            font-size: 1em;
            padding: 10px 20px;
        }
        .page-smart-plan-599__section-title {
            font-size: 1.5em;
        }
        .page-smart-plan-599__feature-item,
        .page-smart-plan-599__game-card {
            padding: 20px;
        }
        .page-smart-plan-599__faq-question {
            font-size: 1em;
            padding: 12px 15px;
        }
        .page-smart-plan-599__faq-answer {
            padding: 0 15px;
        }
        .page-smart-plan-599__faq-item.active .page-smart-plan-599__faq-answer {
            padding: 12px 15px !important;
        }
        .page-smart-plan-599__faq-toggle {
            font-size: 1.3em;
        }
    }
  