        /* Creative Modern Blog Style */
        :root {
            --creative-bg: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
            --creative-card-bg: #ffffff;
            --creative-text: #0f172a;
            --creative-text-secondary: #475569;
            --creative-accent: #2563eb;
            --creative-accent-soft: rgba(37, 99, 235, 0.08);
            --creative-border: #e2e8f0;
            --creative-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
        }

        body {
            background: var(--creative-bg);
            color: var(--creative-text);
            min-height: 100vh;
        }

        /* Ensure Header/Footer Match index.html */
        header.glass-header {
            background: rgba(255, 255, 255, 0.8) !important;
            backdrop-filter: blur(12px) !important;
            border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
        }

        .blog-hero-section {
            padding: 40px 0 40px;
        }

        .blog-container {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .blog-content-card {
            background: var(--creative-card-bg);
            border-radius: 40px;
            padding: 40px 60px;
            box-shadow: var(--creative-shadow);
            border: 1px solid rgba(255, 255, 255, 0.6);
            position: relative;
        }

        .blog-date-tag {
            display: inline-block;
            background: var(--creative-accent-soft);
            color: var(--creative-accent);
            padding: 6px 12px;
            border-radius: 99px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .blog-title h1 {
            font-size: clamp(28px, 4vw, 44px);
            line-height: 1.1;
            font-weight: 900;
            color: #000;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .blog-main-image {
            /* Width will be set via inline style based on Wix measurement */
            height: auto;
            border-radius: 8px;
            margin: 0 auto 32px;
            display: block;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
            object-fit: contain;
        }

        .blog-article-body {
            font-size: 17px;
            line-height: 1.5;
            color: #334155;
        }

        .blog-article-body h2 {
            font-size: 28px;
            font-weight: 800;
            margin: 20px 0 12px;
            color: #000;
            letter-spacing: -0.01em;
        }

        .blog-article-body h3 {
            font-size: 22px;
            font-weight: 700;
            margin: 16px 0 8px;
            color: #000;
        }

        .blog-article-body p {
            margin-bottom: 12px;
        }

        /* Links - subtle style with underline only */
        .blog-article-body a {
            color: inherit;
            text-decoration: underline;
            font-weight: inherit;
            transition: all 0.2s ease;
        }

        .blog-article-body a:hover {
            color: inherit;
            text-decoration: underline;
        }

        /* Images - preserve aspect ratio and add spacing */
        .blog-article-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Unordered lists - add checkmark */
        .blog-article-body ul {
            margin: 16px 0;
            padding: 0;
            list-style: none;
        }

        .blog-article-body ul li {
            position: relative;
            padding-left: 36px;
            margin-bottom: 8px;
        }

        .blog-article-body ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 20px;
            height: 20px;
            background: var(--creative-accent-soft);
            border-radius: 6px;
        }

        .blog-article-body ul li::after {
            content: "✓";
            position: absolute;
            left: 5px;
            top: 10px;
            font-size: 12px;
            font-weight: 900;
            color: var(--creative-accent);
        }

        /* Ordered lists - use numbers only, no checkmark */
        .blog-article-body ol {
            margin: 16px 0;
            padding-left: 24px;
            list-style: decimal;
        }

        .blog-article-body ol li {
            position: relative;
            padding-left: 12px;
            margin-bottom: 8px;
        }

        /* Remove checkmark from ordered lists */
        .blog-article-body ol li::before {
            display: none;
        }

        .blog-article-body ol li::after {
            display: none;
        }

        /* Blockquote style */
        .blog-article-body blockquote {
            border-left: 4px solid var(--creative-accent);
            padding-left: 20px;
            margin: 16px 0;
            font-style: italic;
            color: var(--creative-text-secondary);
        }

        /* Table styles */
        .blog-article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 15px;
        }

        .blog-article-body th,
        .blog-article-body td {
            border: 1px solid var(--creative-border);
            padding: 12px 16px;
            text-align: left;
        }

        .blog-article-body th {
            background: var(--creative-accent-soft);
            font-weight: 700;
        }

        .blog-article-body tr:nth-child(even) {
            background: #f8fafc;
        }

        /* Script/code block style */
        .script-block {
            background: #1e293b;
            color: #e2e8f0;
            padding: 24px;
            border-radius: 12px;
            margin: 24px 0;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            line-height: 1.6;
            overflow-x: auto;
        }

        /* Pre tag style (for code blocks) */
        .blog-article-body pre {
            background: #1e293b;
            color: #e2e8f0;
            padding: 24px;
            border-radius: 12px;
            margin: 24px 0;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            line-height: 1.6;
            overflow-x: auto;
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        /* Related articles section */
        .related-articles {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid var(--creative-border);
        }

        .related-articles h2 {
            margin-bottom: 24px;
        }

        .related-articles ul {
            list-style: none;
            padding: 0;
        }

        .related-articles ul li {
            padding-left: 0;
            margin-bottom: 12px;
        }

        .related-articles ul li::before,
        .related-articles ul li::after {
            display: none;
        }

        .related-articles ul li a {
            color: #2563eb;
            text-decoration: underline;
            font-weight: 600;
        }

        .accent-cta-block {
            margin-top: 80px;
            padding: 60px 40px;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-radius: 32px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .accent-cta-block::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .accent-cta-block h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .accent-cta-block p {
            font-size: 16px;
            color: #94a3b8;
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-creative {
            display: inline-block;
            padding: 14px 40px;
            background: var(--creative-accent);
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            border-radius: 99px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
        }

        .btn-creative:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
            background: #2563eb;
        }

        @media (max-width: 768px) {
            .blog-content-card {
                padding: 40px 24px;
                border-radius: 24px;
            }

            .blog-hero-section {
                padding: 120px 0 60px;
            }

            .accent-cta-block {
                padding: 40px 20px;
            }
        }
