        :root {
            --primary: #4a6bff;
            --primary-dark: #3a56cc;
            --secondary: #34d399;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --gray-light: #e2e8f0;
            --success: #10b981;
            --success-light: #d1fae5;
        }

        .support-banner {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1rem 0;
    color: white;
}

            .support-banner-content {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 1rem;
                text-align: center;
                flex-wrap: wrap;
                padding: 0 1rem;
            }

            .support-banner-icon {
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: rgba(255, 255, 255, 0.2);
                width: 2.5rem;
                height: 2.5rem;
                border-radius: 50%;
                margin-right: 0.5rem;
            }

            .support-banner p {
                margin-bottom: 0;
                color: rgba(255, 255, 255, 0.9);
                font-size: 1.125rem;
            }

            .support-link {
                color: white;
                font-weight: 700;
                text-decoration: underline;
                text-underline-offset: 2px;
            }

            .support-link:hover {
                text-decoration: none;
            }

            .support-button {
                background-color: white;
                color: var(--primary);
                padding: 0.5rem 1.25rem;
                border-radius: 0.5rem;
                font-weight: 600;
                text-decoration: none;
                transition: all 0.2s;
                display: inline-block;
                white-space: nowrap;
            }

            .support-button:hover {
                background-color: var(--success-light);
                transform: translateY(-2px);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }

            /* Floating support button */
            .floating-support {
                position: fixed;
                bottom: 2rem;
                right: 2rem;
                z-index: 99;
            }

            .floating-support a {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                background-color: var(--primary);
                color: white;
                width: 4.5rem;
                height: 4.5rem;
                border-radius: 50%;
                text-decoration: none;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
                transition: all 0.3s ease;
                font-size: 0.75rem;
                font-weight: 600;
            }

            .floating-support svg {
                margin-bottom: 0.25rem;
            }

            .floating-support a:hover {
                background-color: var(--primary-dark);
                transform: translateY(-5px);
                box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            }

            /* Media query for mobile */
            @media (max-width: 768px) {
                .support-banner-content {
                    flex-direction: column;
                    padding: 0.5rem 1rem;
                }
                
                .support-banner p {
                    margin-bottom: 0.75rem;
                }
                
                .floating-support {
                    bottom: 1.5rem;
                    right: 1.5rem;
                }
                
                .floating-support a {
                    width: 3.5rem;
                    height: 3.5rem;
                }
            }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
        }

        .logo svg {
            margin-right: 0.75rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .cta-button {
            background-color: var(--primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.2s;
            display: inline-block;
        }

        .cta-button:hover {
            background-color: var(--primary-dark);
        }

        .secondary-button {
            background-color: white;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            display: inline-block;
            margin-left: 1rem;
        }

        .secondary-button:hover {
            background-color: var(--primary);
            color: white;
        }

        .hero {
            padding: 5rem 0;
            background: linear-gradient(160deg, #f0f4ff 0%, #e0e7ff 100%);
            border-bottom: 1px solid var(--gray-light);
        }

        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 4rem;
        }

        .hero-text {
            flex: 1;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .rating-container {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .stars {
            display: flex;
            margin-right: 0.75rem;
            color: #f59e0b;
        }

        .users-count {
            background-color: var(--success-light);
            color: var(--success);
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-left: 1rem;
        }

        h1 {
            font-size: 2.75rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--dark);
        }

        h2 {
            font-size: 2.25rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--gray);
            font-size: 1.125rem;
        }

        .features {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background-color: white;
            border-radius: 0.75rem;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            background-color: var(--primary);
            width: 3rem;
            height: 3rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon svg {
            color: white;
        }

        .use-cases {
            padding: 5rem 0;
            background-color: #f8fafc;
        }

        .use-case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .use-case-card {
            background-color: white;
            border-radius: 0.75rem;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .use-case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        .use-case-icon {
            background-color: var(--success-light);
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem auto;
        }

        .use-case-icon svg {
            color: var(--success);
        }

        .how-it-works {
            padding: 5rem 0;
        }

        .steps {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem;
            position: relative;
        }

        .steps::before {
            content: "";
            position: absolute;
            top: 2.5rem;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--gray-light);
            z-index: 1;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            width: 25%;
        }

        .step-number {
            width: 3rem;
            height: 3rem;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .step-content {
            text-align: center;
            max-width: 200px;
        }

        .testimonials {
            padding: 5rem 0;
            background-color: #f8fafc;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background-color: white;
            border-radius: 0.75rem;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .testimonial-rating {
            display: flex;
            color: #f59e0b;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-author-image {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            margin-right: 1rem;
            background-color: var(--gray-light);
            overflow: hidden;
        }

        .testimonial-author-info h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .testimonial-author-info p {
            font-size: 0.875rem;
            margin-bottom: 0;
        }

        .faq {
            padding: 5rem 0;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 2rem;
        }

        .faq-item {
            margin-bottom: 1rem;
        }

        .faq-question {
            background-color: white;
            padding: 1.25rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .faq-answer {
            padding: 1.25rem;
            background-color: white;
            border-radius: 0 0 0.5rem 0.5rem;
            margin-top: 2px;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-question {
            border-radius: 0.5rem 0.5rem 0 0;
        }

        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(160deg, #4a6bff 0%, #2a4bdf 100%);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            color: white;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto 2rem auto;
        }

        .cta-section .cta-button {
            background-color: white;
            color: var(--primary);
        }

        .cta-section .cta-button:hover {
            background-color: var(--light);
        }

        .cta-section .secondary-button {
            background-color: transparent;
            color: white;
            border-color: white;
        }

        .cta-section .secondary-button:hover {
            background-color: white;
            color: var(--primary);
        }

        .footer {
            padding: 3rem 0;
            background-color: var(--dark);
            color: white;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer-links h4 {
            margin-bottom: 1.25rem;
            font-size: 1.125rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.2s;
        }

        .social-links a:hover {
            color: white;
        }
        
        /* Blog section (from index.html - might be redundant if blog has its own page) */
        /* Consider removing if .blog-listing styles cover the dedicated blog page */
        .blog { /* This class was on a <section id="blog" class="blog"> in original index.html */
            padding: 5rem 0;
        }
        
        .blog-grid { /* This class was in original index.html */
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .blog-card { /* This class was in original index.html */
            background-color: white;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .blog-image { /* This class was in original index.html */
            height: 200px;
            background-color: var(--gray-light); /* Placeholder for image */
            /* background-image: url('path-to-your-image.jpg'); */
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .blog-content { /* This class was in original index.html */
            padding: 1.5rem;
        }
        
        .blog-date { /* This class was in original index.html */
            font-size: 0.875rem;
            color: var(--gray);
            margin-bottom: 0.5rem;
        }
        
        .blog-card h3 { /* This class was in original index.html */
            margin-bottom: 0.75rem;
        }
        
        .blog-card p { /* This class was in original index.html */
            margin-bottom: 1.25rem;
        }
        
        .read-more { /* This class was in original index.html */
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more svg {
            margin-left: 0.5rem;
            transition: transform 0.2s;
        }
        
        .read-more:hover svg {
            transform: translateX(3px);
        }

        /* Premium Features Section */
        .premium-features {
            padding: 5rem 0;
            background-color: #f0f4ff;
        }

        .premium-feature-card {
            background-color: white;
            border-radius: 0.75rem;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            display: flex;
            gap: 2rem;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .premium-feature-icon {
            background-color: var(--primary);
            width: 4rem;
            height: 4rem;
            min-width: 4rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .premium-feature-icon svg {
            color: white;
        }

        .premium-feature-content h3 {
            margin-bottom: 0.75rem;
        }
        
        /* New version announcement */
        .version-announcement {
            background-color: var(--success-light);
            padding: 1.25rem;
            border-radius: 0.75rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--success);
        }
        
        .version-badge {
            display: inline-block;
            background-color: var(--success);
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        /* General page styles from contact.html and feature-request.html */
        /* .page-header is already defined, ensure it's consistent */
        /* .form-section, .form-container, .form-group, label, input, textarea, select, */
        /* .checkbox-group, .form-footer, .privacy-text, button.cta-button, */
        /* .success-message, .priority-options, .priority-option */
        /* are mostly covered by the feature-request.html styles which are similar */
        /* to contact.html ones. We'll ensure they are robust. */

        /* Contact Page Specifics (if any beyond shared form styles) */
        .contact-section { /* padding already defined */ }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .contact-info {
            background-color: var(--primary);
            color: white;
            border-radius: 1rem;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
        }
        .contact-info h2 { color: white; font-size: 1.75rem; margin-bottom: 1.5rem; position: relative; z-index: 2; }
        .contact-info p { color: rgba(255, 255, 255, 0.8); margin-bottom: 2rem; position: relative; z-index: 2; }
        .contact-methods { position: relative; z-index: 2; }
        .contact-method { display: flex; align-items: flex-start; margin-bottom: 1.5rem; }
        .contact-icon {
            background-color: rgba(255, 255, 255, 0.2);
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        .contact-text h3 { font-size: 1.125rem; margin-bottom: 0.25rem; color: white; }
        .contact-text p, .contact-text a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: color 0.2s; }
        .contact-text a:hover { color: white; }
        .contact-pattern {
            position: absolute;
            bottom: -2rem;
            right: -2rem;
            width: 15rem;
            height: 15rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            z-index: 1;
        }
        .contact-pattern:before {
            content: "";
            position: absolute;
            top: -5rem;
            left: -5rem;
            width: 10rem;
            height: 10rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        /* Form Container (shared by contact and feature-request) */
        .form-container { /* max-width might differ, feature-request.html has 700px, contact.html implies it by grid */
            background-color: white;
            border-radius: 1rem;
            padding: 2.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        .form-container h2 { font-size: 1.75rem; margin-bottom: 1.5rem; } /* Already defined */

        /* Form Group Elements (shared) */
        .form-group { margin-bottom: 1.5rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
        input, textarea, select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--gray-light);
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: border-color 0.2s;
        }
        input:focus, textarea:focus, select:focus { outline: none; border-color: var(--primary); }
        textarea { min-height: 150px; resize: vertical; }
        
        /* Feature Request Specific Form Elements */
        .checkbox-group { display: flex; align-items: flex-start; margin-bottom: 1rem; }
        .checkbox-group input { width: auto; margin-right: 0.75rem; margin-top: 0.25rem; }
        .priority-options { display: flex; gap: 1rem; margin-top: 0.5rem; }
        .priority-option {
            flex: 1;
            padding: 1rem;
            border: 1px solid var(--gray-light);
            border-radius: 0.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
        }
        .priority-option:hover { border-color: var(--primary); }
        .priority-option.selected { background-color: var(--primary); color: white; border-color: var(--primary); }

        /* Form Footer (shared) */
        .form-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; }
        .privacy-text { font-size: 0.875rem; color: var(--gray); }
        button.cta-button { border: none; cursor: pointer; } /* Ensure this doesn't conflict with global .cta-button */

        /* Success Message (shared) */
        .success-message {
            background-color: var(--secondary); /* var(--success) might be better if defined */
            color: white;
            text-align: center;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 2rem;
            display: none;
        }
        .success-message.show { display: block; }


        /* Responsive Styles (ensure these are at the end or managed well) */
        @media (max-width: 768px) {
            /* General responsive from index.html */
            .hero-content { flex-direction: column; gap: 2rem; }
            h1 { font-size: 2.25rem; } /* This might conflict with .page-header h1, be specific */
            /* .page-header h1 { font-size: 2.5rem; } */ /* from contact.html, potentially more specific */
            nav .nav-links { display: none; } /* Global nav links */
            .steps { flex-direction: column; align-items: center; gap: 2rem; }
            .steps::before { display: none; }
            .step { width: 100%; }
            .premium-feature-card { flex-direction: column; gap: 1rem; }
            .faq-grid { grid-template-columns: 1fr; }

            /* Contact page responsive */
            .contact-grid { grid-template-columns: 1fr; }
            
            /* Feature request / shared form responsive */
            .form-footer { flex-direction: column; gap: 1rem; }
            .privacy-text { order: 2; } /* For feature request form footer */
        }

/* =============================================== */
/* Blog Specific Styles (Appended)               */
/* =============================================== */

/* --- Blog Listing Page (blog/index.njk) --- */

.blog-listing .blog-post-summary {
    background-color: #ffffff; /* White background for each summary card */
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2.5rem; /* Increased spacing between posts */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.blog-listing .blog-post-summary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.blog-listing .blog-post-summary h2 {
    margin-top: 0; /* Remove default top margin if any */
    margin-bottom: 0.75rem;
    font-size: 1.75rem; /* Slightly larger for post titles */
}

.blog-listing .blog-post-summary h2 a {
    text-decoration: none;
    color: var(--dark);
    transition: color 0.2s;
}

.blog-listing .blog-post-summary h2 a:hover {
    color: var(--primary);
}

.blog-listing .post-meta {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
    display: block; /* Ensure it takes its own line */
}

.blog-listing .blog-post-summary p { /* For the summary/excerpt text */
    font-size: 1rem;
    color: var(--dark); /* Was var(--gray), changed to var(--dark) for better readability */
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-listing .blog-post-summary .cta-button {
    padding: 0.6rem 1.2rem; /* Slightly adjusted padding for "Read More" */
    font-size: 0.9rem;
}


/* --- Individual Blog Post Page (post-layout.njk & Markdown content) --- */

/* Post Header Meta (within .page-header on post pages) */
.page-header .post-meta { /* This selector is already used in your base styles, ensure no conflict or merge */
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: -1rem; /* Adjust spacing below post title in blog context */
    margin-bottom: 1rem; /* Ensure space before article content */
}

.page-header .post-meta time {
    font-weight: 500;
}

.page-header .post-meta .tag-link {
    display: inline-block;
    background-color: var(--gray-light);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-top: 0.25rem; /* For wrapping */
    transition: background-color 0.2s, color 0.2s;
}

.page-header .post-meta .tag-link:hover {
    background-color: var(--primary);
    color: white;
}


/* Article Content Styling */
.blog-content-section .container { /* This container has max-width: 800px from inline style in post-layout.njk */
    /* Styles for elements generated from Markdown */
}

.blog-content-section h1, /* Usually title is in page-header, but for Markdown h1 if used in content */
.blog-content-section h2,
.blog-content-section h3,
.blog-content-section h4,
.blog-content-section h5,
.blog-content-section h6 {
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
/* Specific heading sizes for blog content if different from global */
.blog-content-section h1 { font-size: 2rem; } /* Example if h1 used in markdown body */
.blog-content-section h2 { font-size: 1.75rem; }
.blog-content-section h3 { font-size: 1.5rem; }
.blog-content-section h4 { font-size: 1.25rem; }


.blog-content-section p {
    font-size: 1.1rem; /* Slightly larger for better readability in posts */
    line-height: 1.8;
    color: var(--dark); 
    margin-bottom: 1.5rem;
}

.blog-content-section a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.blog-content-section a:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary-dark);
}

.blog-content-section ul,
.blog-content-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem; /* Indent lists */
}

.blog-content-section ul li,
.blog-content-section ol li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem; /* Consistent with p or slightly smaller */
    line-height: 1.7;
    color: var(--dark);
}

.blog-content-section blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray); /* Darker gray for quote text */
}

.blog-content-section blockquote p {
    margin-bottom: 0.5rem; 
    font-size: 1.1rem; /* Same as main paragraph text */
    color: inherit; /* Inherit italic and color from blockquote */
}

.blog-content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem; 
    margin: 2rem auto; /* Centering block images */
    display: block; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Code Blocks and Inline Code */
.blog-content-section pre {
    background-color: #2d3748; /* Darker background for code blocks */
    color: #e2e8f0; /* Light text color for dark background */
    border: 1px solid #4a5568; /* Darker border */
    border-radius: 0.5rem;
    padding: 1.25rem; /* More padding */
    overflow-x: auto; 
    font-size: 0.9rem;
    line-height: 1.6; /* Increased line height for readability */
    margin: 2rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.blog-content-section code { /* Inline code */
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    background-color: rgba(var(--primary-rgb, 74, 107, 255), 0.1); /* Use primary color with alpha */
    color: var(--primary-dark); /* Darker primary color for text */
    padding: 0.2em 0.5em; /* Slightly more padding */
    border-radius: 0.25rem;
    font-size: 0.9em;
}

.blog-content-section pre code { /* Code within pre blocks */
    background-color: transparent; 
    padding: 0;
    border-radius: 0;
    color: inherit; 
    font-size: inherit;
    /* Reset any specific inline code styles that shouldn't apply inside pre */
}

.blog-content-section hr {
    border: 0;
    height: 1px;
    background-color: var(--gray-light);
    margin: 3rem 0;
}

/* Table Styling (enhanced) */
.blog-content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0; /* More margin */
    font-size: 0.95rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.07);
    border-radius: 0.5rem; /* Rounded corners for the table */
    overflow: hidden; /* To make border-radius work with th/td */
}

.blog-content-section th,
.blog-content-section td {
    border: 1px solid var(--gray-light);
    padding: 0.85rem 1rem; /* More padding in cells */
    text-align: left;
    vertical-align: top; /* Align content to the top */
}

.blog-content-section th {
    background-color: var(--light); /* Lighter than #f8fafc for more contrast */
    font-weight: 600;
    color: var(--dark);
    border-bottom-width: 2px; /* Thicker bottom border for header */
}

.blog-content-section tbody tr:nth-child(even) {
    background-color: #f9fafb; /* Slightly more visible striping */
}
.blog-content-section tbody tr:hover {
    background-color: #f0f4ff; /* Hover effect for rows */
}


/* Back to Blog List Button (already uses .cta-button, specific adjustments if needed) */
.blog-content-section + section .cta-button { 
    margin-top: 1rem; /* Ensure some space if it's directly after content */
}
