        /* Reset and Base Styles (Copied from blog.html for consistency) */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        body { background-color: var(--background); color: var(--dark); line-height: 1.6; overflow-x: hidden; }

        /* Color Variables (Copied) */
        :root { --primary: #7209B7; --accent: #FF6B81; --highlight: #FFD700; --white: #FFFFFF; --dark: #333333; --background: #F3F4F6; }

        /* Navigation Styles (Copied from blog.html - Unchanged) */
        nav {
            background-color: rgba(114, 9, 183, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            padding: 1rem 5%; position: fixed; width: 100%; z-index: 1000; display: flex;
            justify-content: space-between; align-items: center; box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1); height: 70px;
        }
        .logo { color: var(--white); font-size: 1.5rem; font-weight: 700; text-decoration: none; display: flex; align-items: center; }
        .logo span { color: var(--accent); }
        .nav-logo-img { height: 30px; width: auto; vertical-align: middle; margin-right: 8px; }
        .nav-links { display: flex; list-style: none; }
        .nav-links.mobile-nav-active {
             display: flex; flex-direction: column; position: absolute; top: 100%;
             left: 0; width: 100%; background-color: rgba(114, 9, 183, 0.98);
             padding: 1.5rem 0; text-align: center;
             box-shadow: 0 5px 10px rgba(0,0,0,0.2); z-index: 999;
        }
        .nav-links li { margin-left: 2rem; }
        .nav-links.mobile-nav-active li { margin: 0.75rem 0; margin-left: 0; }
        .nav-links a { color: var(--white); text-decoration: none; font-weight: 500; transition: color 0.3s ease, background-color 0.3s ease, padding 0.3s ease; display: inline-block; padding: 0.4rem 0.8rem; border-radius: 6px; }
        .nav-links a:hover, .nav-links a.nav-active { color: var(--highlight); }
        .nav-links.mobile-nav-active li a.mobile-nav-link-active,
        .nav-links.mobile-nav-active li a.nav-active {
            color: var(--highlight); background-color: rgba(255, 255, 255, 0.15);
        }
        .nav-links.mobile-nav-active li a:not(.mobile-nav-link-active):not(.nav-active):hover {
            color: var(--highlight); background-color: rgba(255, 255, 255, 0.08);
        }
        .mobile-menu { display: none; font-size: 1.5rem; color: var(--white); cursor: pointer; background: none; border: none; padding: 0.5rem; }

        /* Article Page Specific Styles - Header (Unchanged) */
        .article-header {
            padding: 140px 5% 40px;
            background: linear-gradient(135deg, var(--primary) 0%, #5f0a87 80%, var(--accent) 100%);
            color: var(--white); text-align: left; position: relative; overflow: hidden;
        }
        .article-header::before {
             content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
             background: radial-gradient(circle at 15% 25%, rgba(255,255,255,0.07) 0%, transparent 60%),
                         radial-gradient(circle at 85% 75%, rgba(255, 107, 129, 0.09) 0%, transparent 60%);
             z-index: 0;
        }
        .article-header-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
        .article-title-main {
            font-size: 2.8rem; font-weight: 700; line-height: 1.2;
            margin-bottom: 0.75rem; text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .article-meta-info {
            font-size: 0.9rem; opacity: 0.85; display: flex;
            gap: 1.5rem; margin-bottom: 1rem;
        }
        .article-meta-info span { display: inline-flex; align-items: center;}
        .article-meta-info i { margin-right: 0.5rem; color: var(--highlight); }
        .article-breadcrumb a { color: var(--highlight); text-decoration: none; }
        .article-breadcrumb a:hover { text-decoration: underline; }

        /* Article Body and Content Styling (Unchanged) */
        .article-body-container { padding: 3rem 5% 4rem; background-color: var(--white); }
        .article-content { max-width: 750px; margin: 0 auto; color: var(--dark); }
        .article-content p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; color: #343a40; }
        .article-content h2 { font-size: 1.8rem; font-weight: 600; color: var(--primary); margin-top: 2.5rem; margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid rgba(114, 9, 183, 0.2); }
        .article-content h3 { font-size: 1.5rem; font-weight: 600; color: var(--dark); margin-top: 2rem; margin-bottom: 1rem; }
        .article-content h4 { font-size: 1.2rem; font-weight: 600; color: #495057; margin-top: 1.8rem; margin-bottom: 0.8rem; }
        .article-content ul, .article-content ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
        .article-content li { margin-bottom: 0.5rem; font-size: 1rem; line-height: 1.6; }
        .article-content a { color: var(--primary); text-decoration: none; font-weight: 500; transition: color 0.2s ease, border-bottom 0.2s ease; border-bottom: 1px solid transparent; }
        .article-content a:hover { color: var(--accent); border-bottom: 1px solid var(--accent); }
        .article-content strong { font-weight: 600; color: var(--dark); }
        .article-content em { font-style: italic; color: #555; }
        .article-content blockquote { border-left: 4px solid var(--accent); margin: 2rem 0; padding: 1rem 1.5rem; background-color: #f9f9f9; font-style: italic; font-size: 1.1rem; color: #555; }
        .article-content blockquote p { margin-bottom: 0; }
        .article-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.5rem 0; box-shadow: 0 5px 15px rgba(0,0,0,0.1); display: block; }
        .article-content figure { margin: 1.5rem 0; }
        .article-content figcaption { font-size: 0.9rem; color: #6c757d; text-align: center; margin-top: 0.5rem; }
        .article-content hr { border: 0; height: 1px; background-color: #e0e0e0; margin: 2.5rem 0; }
        .article-content .highlight-box { background-color: rgba(114, 9, 183, 0.05); border-left: 4px solid var(--primary); padding: 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; }
        .article-content .highlight-box p:last-child { margin-bottom: 0; }

        /* --- MODIFIED: Call to Action (CTA) Section --- */
        .article-cta-section {
            padding: 4rem 5%; /* Increased padding */
            /* MODIFIED background like .why-section */
            background: linear-gradient(to bottom, var(--dark) 0%, #7209B7 10%, #7209B7 90%, var(--accent) 100%);
            color: var(--white);
            text-align: center;
            position: relative; /* For pseudo-elements if added later */
            overflow: hidden;
        }
        /* Optional decorative elements for CTA section */
        .article-cta-section::before, .article-cta-section::after {
            content: ''; position: absolute; border-radius: 50%; z-index: 0;
            background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
            pointer-events: none;
        }
        .article-cta-section::before { top: -80px; right: -80px; width: 200px; height: 200px; }
        .article-cta-section::after { bottom: -60px; left: -60px; width: 180px; height: 180px; }

        .article-cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative; /* Above pseudo-elements */
            z-index: 1;
        }
        .article-cta-content h2 {
            font-size: 2.2rem; /* Slightly larger */
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: var(--white);
            border-bottom: none;
        }
        .article-cta-content p {
            font-size: 1.15rem; /* Slightly larger */
            margin-bottom: 2.5rem;
            opacity: 0.9;
            color: var(--white);
        }

        /* MODIFIED: CTA Button to match hero button structure */
        .cta-button-container {
            display: flex; justify-content: center; align-items: center;
        }
        .cta-button { /* This is now the main button wrapper */
            position: relative; /* For gradient-bg */
            padding: 0.8rem 2rem; /* Padding on text span or directly here */
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 9999px; /* Pill shape */
            overflow: hidden;
            transform: scale(1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex; /* To center text */
            justify-content: center;
            align-items: center;
            text-align: center;
            text-decoration: none; /* Remove underline if it's an <a> tag */
            background: none; /* Remove direct background */
        }
        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
        }
        .cta-gradient-bg { /* For the animated gradient */
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            border-radius: 9999px;
            z-index: 1;
            /* Initial gradient set by JS */
        }
        .cta-button-text { /* Text sits above the gradient */
            position: relative;
            z-index: 2;
            display: inline-flex; /* Align icon properly */
            align-items: center;
        }
        .cta-button-text i { margin-left: 0.6rem; }


        /* --- MODIFIED: Related Articles Section --- */
        .related-articles-section {
            padding: 4rem 5% 5rem;
            /* MODIFIED background - subtle primary tint */
            background-color: var(--accent); /* Very light primary color tint */
        }
        .related-articles-container { max-width: 1200px; margin: 0 auto; }
        .related-articles-title {
            text-align: center; margin-bottom: 3rem; font-size: 2.2rem; color: var(--dark);
            position: relative; font-weight: 700; z-index: 1;
        }
        .related-articles-title::after {
            content: ''; display: block; width: 100px; height: 4px;
            background: linear-gradient(90deg, var(--primary), #ff1493);
            margin: 1rem auto 0; border-radius: 3px;
            box-shadow: 0 2px 8px rgba(114, 9, 183, 0.2);
        }
        .related-articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        /* Related Article Card Styling (Unchanged from previous version) */
        .related-article-card { background-color: var(--white); border-radius: 12px; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; color: inherit; height: 100%; }
        .related-article-card:hover { transform: translateY(-6px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
        .related-article-thumbnail { width: 100%; height: 160px; object-fit: cover; }
        .related-article-content { padding: 1.2rem; display: flex; flex-direction: column; flex-grow: 1; }
        .related-article-card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--dark); line-height: 1.3; }
        .related-article-card-title a { text-decoration: none; color: inherit; }
        .related-article-card-title a:hover { color: var(--primary); }
        .related-article-meta { font-size: 0.8rem; color: #6c757d; margin-bottom: 0.8rem; }
        .related-article-meta i { margin-right: 0.3rem; color: var(--accent); }
        .related-article-readmore { display: inline-block; font-weight: 500; font-size: 0.9rem; color: var(--primary); text-decoration: none; margin-top: auto; align-self: flex-start; }
        .related-article-readmore:hover { color: var(--accent); text-decoration: underline; }
        .related-article-readmore i { margin-left: 0.2rem; }


        /* Footer (Unchanged except Twitter icon later in HTML) */
        footer { background-color: var(--dark); color: var(--white); padding: 3rem 5%; }
        .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; max-width: 1200px; margin: 0 auto;}
        .footer-logo { flex: 1 1 300px; } .footer-logo h2 { color: var(--white); margin-bottom: 1rem; font-size: 1.8rem; } .footer-logo span { color: var(--accent); } .footer-logo p { margin-bottom: 1.5rem; line-height: 1.7; opacity: 0.8; } .social-icons { display: flex; gap: 1rem; margin-top: 1.5rem; } .social-icons a { color: var(--white); font-size: 1.5rem; transition: color 0.3s ease, transform 0.3s ease; text-decoration: none; display: inline-block; } .social-icons a:hover { color: var(--accent); text-decoration: none; transform: scale(1.1) translateY(-2px); }
        .footer-links { flex: 1 1 180px; } .footer-links h3 { margin-bottom: 1rem; color: var(--accent); font-size: 1.2rem; } .footer-links ul { list-style: none; padding-left: 0; } .footer-links li { margin-bottom: 0.7rem; display: flex; align-items: center; }
        .footer-links a { color: var(--white); text-decoration: none; transition: color 0.3s ease; }
        .footer-links a:hover { color: var(--highlight); text-decoration: none; } .footer-links i { margin-right: 0.8rem; color: var(--highlight); width: 1.2em; text-align: center; flex-shrink: 0; }
        .copyright { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; opacity: 0.7; }

        /* Chat Banner (Unchanged)
        .chat-banner { position: fixed; bottom: 1.5rem; right: 1.5rem; background-color: var(--accent); color: var(--white); padding: 0.8rem 1.2rem; border-radius: 50px; cursor: pointer; box-shadow: 0 5px 15px rgba(255, 107, 129, 0.4); z-index: 999; display: flex; align-items: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .chat-banner:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 8px 20px rgba(255, 107, 129, 0.5); }
        .chat-banner span { margin-left: 0.5rem; font-weight: 600; font-size: 0.9rem; }
        .chat-banner i { font-size: 1.1rem; }
        .fa, .fas, .fab, .fa-brands { display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; -webkit-font-smoothing: antialiased; } /* Added .fa-brands for X icon */

        /* Scroll Reveal (Unchanged) */
        .reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
        .reveal-on-scroll.active { opacity: 1; transform: translateY(0); }

        /* Responsive Styles (Minor adjustments might be needed for new CTA button) */
        @media (max-width: 768px) {
            nav { height: 60px; padding: 0.5rem 5%;}
            .nav-links { display: none; }
            .mobile-menu { display: inline-flex; }
            .nav-logo-img { height: 25px; }

            .article-header { padding: 120px 5% 30px; }
            .article-title-main { font-size: 2.2rem; }
            .article-meta-info { font-size: 0.85rem; gap: 1rem; flex-wrap: wrap; }

            .article-body-container { padding: 2rem 5% 3rem; }
            .article-content h2 { font-size: 1.6rem; }
            .article-content h3 { font-size: 1.3rem; }
            .article-content p { font-size: 1rem; }

            .article-cta-section { padding: 3rem 5%; } /* Adjusted padding */
            .article-cta-content h2 { font-size: 1.8rem; }
            .article-cta-content p { font-size: 1rem; }
            .cta-button { font-size: 1rem; padding: 0.7rem 1.5rem; } /* Adjusted padding if text span is not used */

            .related-articles-section { padding: 3rem 5%; }
            .related-articles-title { font-size: 1.8rem; }
            .related-articles-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .related-article-thumbnail { height: 150px; }
            .related-article-card-title { font-size: 1rem; }

            /* Footer Responsive (Unchanged) */
            .footer-content { flex-direction: column; text-align: center; gap: 1.5rem; }
            .footer-logo, .footer-links { min-width: 100%; margin-bottom: 1rem; flex-basis: auto; }
            .social-icons { justify-content: center; }
            .footer-links ul { text-align: center; } .footer-links li { justify-content: center; } .footer-links i { margin-right: 0.5rem; }
        }