
    <header class="healthedia-global-header">
        <div class="healthedia-header-container">
            <!-- Left-aligned Logo & Nav Group -->
            <div class="healthedia-header-left-group">
                <a href="https://healthedia.org/" class="healthedia-logo-group">
                    <span class="healthedia-logo-title">Healthedia</span>
                    <span class="healthedia-logo-sub">GLOBAL HEALTH ARCHIVE</span>
                </a>

                <!-- Desktop Navigation Links -->
                <nav class="healthedia-nav">
                    <a href="https://healthedia.org/healthedia-search/" class="healthedia-nav-item ">Archive Search</a><a href="https://healthedia.org/healthedia-dashboard/" class="healthedia-nav-item ">Researchers</a><a href="#" class="healthedia-nav-item ">Institutions</a><a href="/journal" class="healthedia-nav-item ">Scientific Journal</a>
                </nav>
            </div>

            <!-- Right-aligned Authentication & Mobile Menu Wrapper -->
            <div class="healthedia-header-right-wrapper">
                <!-- Right-aligned Authentication Area -->
                <div class="healthedia-auth-btn-wrapper">
                    <a href="https://healthedia.org/login/" class="healthedia-btn-login">LOGIN</a>
                </div>

                <!-- Mobile Dropdown Navigation Trigger - positioned on far right of Login button -->
                <div class="healthedia-mobile-nav-trigger-container" id="healthedia-mobile-trigger-container">
                    <button class="healthedia-mobile-menu-btn" id="mobile-menu-toggle-btn" aria-label="Menu">
                        <svg class="healthedia-mobile-hamburger-svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
                            <line x1="3" y1="12" x2="21" y2="12"></line>
                            <line x1="3" y1="6" x2="21" y2="6"></line>
                            <line x1="3" y1="18" x2="21" y2="18"></line>
                        </svg>
                    </button>
                    <div class="healthedia-mobile-dropdown-menu" id="mobile-dropdown-menu-list">
                        <a href="https://healthedia.org/healthedia-search/" class="healthedia-nav-item ">Archive Search</a><a href="https://healthedia.org/healthedia-dashboard/" class="healthedia-nav-item ">Researchers</a><a href="#" class="healthedia-nav-item ">Institutions</a><a href="/journal" class="healthedia-nav-item ">Scientific Journal</a>
                    </div>
                </div>
            </div>
        </div>
    </header>

    

    <style>
        :root {
            --healthedia-black: #000000;
            --healthedia-white: #ffffff;
            --healthedia-grey: #666666;
            --healthedia-light-grey: #f7f7f7;
            --healthedia-border: #e5e5e5;
        }

        .healthedia-global-header {
            width: 100%;
            max-width: 1400px;
            margin: 20px auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .healthedia-header-container {
            background: var(--healthedia-white);
            border: 1px solid var(--healthedia-border);
            border-radius: 50px;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            box-sizing: border-box;
            height: 60px; /* Reduced from 70px for a more compact and elegant profile */
        }

        .healthedia-header-left-group {
            display: flex;
            align-items: center;
            gap: 40px; /* Positions navigation items directly to the right of the logo with consistent spacing */
        }

        .healthedia-logo-group {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: var(--healthedia-black);
            line-height: 1.1;
        }

        .healthedia-logo-title {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .healthedia-logo-sub {
            font-size: 8px;
            font-weight: 700;
            color: #999999;
            letter-spacing: 1.5px;
            margin-top: 2px;
        }

        .healthedia-nav {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .healthedia-nav-item {
            text-decoration: none;
            color: var(--healthedia-grey);
            font-size: 14px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 30px;
            transition: all 0.2s ease;
        }

        .healthedia-nav-item:hover {
            color: var(--healthedia-black);
        }

        .healthedia-nav-item.active {
            background: var(--healthedia-black);
            color: var(--healthedia-white) !important;
        }

        .healthedia-btn-login {
            background: var(--healthedia-black);
            color: var(--healthedia-white);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            padding: 10px 28px;
            border-radius: 30px;
            letter-spacing: 1px;
            transition: transform 0.2s ease, opacity 0.2s ease;
            display: inline-block;
        }

        .healthedia-btn-login:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        /* User Dropdown Premium Styling */
        .healthedia-user-dropdown-container {
            position: relative;
            display: inline-block;
        }

        .healthedia-dropdown-trigger {
            background: none;
            border: 1px solid var(--healthedia-border);
            border-radius: 30px;
            padding: 4px 14px 4px 6px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .healthedia-dropdown-trigger:hover {
            border-color: var(--healthedia-black);
            background-color: #fafafa;
        }

        .healthedia-header-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: var(--healthedia-black);
            color: var(--healthedia-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 12px;
        }

        .healthedia-header-user-name {
            font-size: 13px;
            font-weight: 600;
            color: #333333;
        }

        .healthedia-dropdown-chevron {
            color: #888888;
            transition: transform 0.2s ease;
        }

        .healthedia-user-dropdown-container.open .healthedia-dropdown-chevron {
            transform: rotate(180deg);
        }

        .healthedia-dropdown-menu {
            display: none;
            position: absolute;
            right: 0;
            top: calc(100% + 10px);
            background: #ffffff !important; /* Robust solid white background */
            border: 1px solid var(--healthedia-border);
            border-radius: 16px;
            width: 220px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 12px;
            box-sizing: border-box;
            z-index: 10000;
            animation: dropdownFadeIn 0.2s ease;
        }

        .healthedia-user-dropdown-container.open .healthedia-dropdown-menu {
            display: block;
        }

        @keyframes dropdownFadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .healthedia-dropdown-header {
            padding: 4px 8px 10px 8px;
            text-align: left;
        }

        .healthedia-dropdown-welcome {
            font-size: 11px;
            font-weight: 700;
            color: #999999;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .healthedia-dropdown-user-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--healthedia-black);
            margin-top: 2px;
        }

        .healthedia-dropdown-divider {
            border: 0;
            border-top: 1px solid var(--healthedia-border);
            margin: 6px 0;
        }

        .healthedia-dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            font-size: 13px;
            font-weight: 600;
            color: #555555;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.2s ease;
            text-align: left;
        }

        .healthedia-dropdown-item:hover {
            background-color: #f5f5f5;
            color: var(--healthedia-black);
        }

        .healthedia-dropdown-item.healthedia-logout-btn {
            color: #bf271b;
        }

        .healthedia-dropdown-item.healthedia-logout-btn:hover {
            background-color: #fbeae9;
            color: #bf271b;
        }

        /* Header Right Wrapper Style */
        .healthedia-header-right-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        /* Desktop specific mobile menu display reset */
        .healthedia-mobile-nav-trigger-container {
            display: none;
        }

        /* Mobile layout optimization */
        @media (max-width: 768px) {
            .healthedia-header-container {
                border-radius: 20px;
                height: 60px;
                padding: 12px 16px;
                display: flex !important;
                align-items: center !important;
                justify-content: space-between !important;
            }
            .healthedia-header-left-group {
                display: flex !important;
                align-items: center !important;
                gap: 12px !important;
            }
            .healthedia-nav {
                display: none !important; /* Hide desktop linear navigation menu completely */
            }

            /* Mobile Navigation Dropdown */
            .healthedia-mobile-nav-trigger-container {
                display: inline-block !important;
                position: relative;
            }
            .healthedia-mobile-menu-btn {
                background: #ffffff !important; /* Solid white circular button */
                border: 1px solid var(--healthedia-border);
                border-radius: 50% !important; /* Perfect circle */
                width: 38px !important;
                height: 38px !important;
                padding: 0 !important;
                cursor: pointer;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                color: #000000 !important; /* Solid black hamburger lines by default */
                transition: color 0.2s ease, border-color 0.2s ease;
            }
            .healthedia-mobile-menu-btn:hover {
                border-color: var(--healthedia-black);
            }
            /* When the button is pressed or activated, the icon changes to light gray */
            .healthedia-mobile-nav-trigger-container.open .healthedia-mobile-menu-btn {
                color: #bbbbbb !important; /* Light gray hamburger icon state */
            }
            .healthedia-mobile-dropdown-menu {
                display: none;
                position: absolute;
                right: 0 !important; /* Align dropdown with right edge of trigger */
                left: auto !important;
                top: calc(100% + 8px);
                background-color: #ffffff !important; /* Force solid white background */
                background: #ffffff !important;
                border: 1px solid var(--healthedia-border) !important;
                border-radius: 12px;
                width: 180px;
                box-shadow: 0 10px 25px rgba(0,0,0,0.12) !important;
                padding: 8px;
                box-sizing: border-box;
                z-index: 100000 !important; /* Ensure it floats above background content */
                animation: mobileDropdownFadeIn 0.2s ease;
            }
            .healthedia-mobile-nav-trigger-container.open .healthedia-mobile-dropdown-menu {
                display: block !important;
            }
            @keyframes mobileDropdownFadeIn {
                from { opacity: 0; transform: translateY(6px); }
                to { opacity: 1; transform: translateY(0); }
            }
            .healthedia-mobile-dropdown-menu .healthedia-nav-item {
                display: block !important;
                padding: 10px 14px !important;
                font-size: 13px !important;
                font-weight: 600 !important;
                color: var(--healthedia-grey) !important;
                text-decoration: none !important;
                border-radius: 8px !important;
                transition: all 0.2s ease !important;
                text-align: left !important;
                background: none !important;
            }
            .healthedia-mobile-dropdown-menu .healthedia-nav-item:hover,
            .healthedia-mobile-dropdown-menu .healthedia-nav-item.active {
                background-color: var(--healthedia-light-grey) !important;
                color: var(--healthedia-black) !important;
            }

            .healthedia-btn-login {
                padding: 8px 18px;
                font-size: 12px;
            }
            .healthedia-dropdown-trigger {
                padding: 4px 10px 4px 4px;
                gap: 6px;
            }
            .healthedia-header-avatar {
                width: 28px;
                height: 28px;
                font-size: 10px;
            }
            .healthedia-header-user-name {
                font-size: 11px;
            }
            .healthedia-dropdown-menu {
                width: 180px;
                top: calc(100% + 6px);
            }
        }

        /* MODAL DIALOG PRESET STYLING */
        .healthedia-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 1000000;
            align-items: center;
            justify-content: center;
            animation: modalOverlayFade 0.25s ease;
        }
        .healthedia-modal-overlay.open {
            display: flex !important;
        }
        @keyframes modalOverlayFade {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .healthedia-modal-card {
            background-color: #ffffff;
            border-radius: 20px;
            width: 100%;
            max-width: 500px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            box-sizing: border-box;
            position: relative;
            animation: modalSlideUp 0.25s ease;
        }
        @keyframes modalSlideUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        .healthedia-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }
        .healthedia-modal-title {
            font-size: 20px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            margin: 0;
            color: #000000;
        }
        .healthedia-modal-close {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #888888;
            line-height: 1;
            padding: 0;
        }
        .healthedia-modal-close:hover {
            color: #000000;
        }
        .healthedia-modal-form-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        /* Complete Premium Styles for Edit Account Modal & Wizard Steps */
        .healthedia-modal-card {
            background-color: #ffffff !important;
            background: #ffffff !important;
            opacity: 1 !important;
            border: 1px solid var(--healthedia-border);
            z-index: 1000002 !important;
        }

        .healthedia-modal-fieldset {
            display: none;
            width: 100%;
        }

        .healthedia-modal-fieldset.active {
            display: block !important;
        }

        /* Step Indicators in Modal */
        .healthedia-modal-card .healthedia-wizard-steps-indicator {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 10px !important;
            margin-bottom: 25px !important;
            width: 100% !important;
            box-sizing: border-box !important;
            flex-direction: row !important; /* Force horizontal alignment! */
        }

        .healthedia-modal-card .healthedia-wizard-indicator-dot {
            width: 30px !important;
            height: 30px !important;
            border-radius: 50% !important;
            background-color: #f0f0f0 !important;
            color: #999999 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            font-size: 12px !important;
            font-weight: 700 !important;
            transition: all 0.2s ease !important;
            box-sizing: border-box !important;
            flex-shrink: 0 !important;
        }

        .healthedia-modal-card .healthedia-wizard-indicator-dot.active {
            background-color: #000000 !important;
            color: #ffffff !important;
        }

        .healthedia-modal-card .healthedia-wizard-indicator-dot.completed {
            background-color: #e6f6ec !important;
            color: #1b8a4f !important;
        }

        .healthedia-modal-card .healthedia-wizard-indicator-line {
            height: 2px !important;
            width: 25px !important;
            background-color: #e5e5e5 !important;
            flex-grow: 1 !important;
            max-width: 40px !important;
        }

        .healthedia-modal-card .healthedia-wizard-indicator-line.active {
            background-color: #000000 !important;
        }

        /* Modal Forms & Input Fields */
        .healthedia-form-row {
            display: flex;
            flex-direction: column;
            gap: 6px;
            width: 100%;
            text-align: left;
            box-sizing: border-box;
        }

        .healthedia-form-label {
            font-size: 11px;
            font-weight: 700;
            color: #111111;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 0;
        }

        .healthedia-input-field {
            width: 100% !important;
            background-color: #ffffff !important;
            border: 1px solid #dddddd !important;
            border-radius: 12px !important;
            padding: 12px 16px !important;
            box-sizing: border-box !important;
            font-size: 14px !important;
            font-family: inherit !important;
            color: #333333 !important;
            outline: none !important;
            height: 46px !important;
            transition: border-color 0.2s ease !important;
        }

        .healthedia-input-field:focus {
            border-color: #000000 !important;
        }

        .healthedia-select-input {
            width: 100% !important;
            background-color: #ffffff !important;
            border: 1px solid #dddddd !important;
            border-radius: 12px !important;
            padding: 0 16px !important;
            box-sizing: border-box !important;
            font-size: 14px !important;
            font-family: inherit !important;
            color: #333333 !important;
            outline: none !important;
            height: 46px !important;
            line-height: 46px !important;
            transition: border-color 0.2s ease !important;
            appearance: none !important;
            background-image: url(\"data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23999%22%20stroke-width%3D%222%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C/polyline%3E%3C/svg%3E\") !important;
            background-repeat: no-repeat !important;
            background-position: right 16px center !important;
        }

        .healthedia-select-input:focus {
            border-color: #000000 !important;
        }

        /* Modal Actions & Buttons */
        .healthedia-modal-card .healthedia-auth-submit {
            width: 100% !important;
            background-color: #000000 !important;
            color: #ffffff !important;
            border: none !important;
            border-radius: 12px !important;
            padding: 14px 0 !important;
            font-size: 13px !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            cursor: pointer !important;
            transition: opacity 0.2s ease, transform 0.2s ease !important;
            text-align: center !important;
            display: block !important;
        }

        .healthedia-modal-card .healthedia-auth-submit:hover {
            opacity: 0.9 !important;
            transform: translateY(-1px) !important;
        }

        .healthedia-modal-card .healthedia-wizard-actions {
            display: flex !important;
            gap: 12px !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }

        .healthedia-modal-card .healthedia-auth-btn-secondary {
            flex: 1 !important;
            background-color: #f4f4f4 !important;
            color: #333333 !important;
            border: 1px solid #e5e5e5 !important;
            border-radius: 12px !important;
            padding: 14px 0 !important;
            font-size: 13px !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            cursor: pointer !important;
            transition: background-color 0.2s ease !important;
            text-align: center !important;
            display: block !important;
        }

        .healthedia-modal-card .healthedia-auth-btn-secondary:hover {
            background-color: #e5e5e5 !important;
        }
    </style>

    <script id="healthedia-header-script">
        // Helper multi-step navigation for modal wizard
        function nextModalStep(step) {
            // Hide all fieldsets by setting style.display to none and removing active class
            for (let i = 1; i <= 4; i++) {
                const el = document.getElementById("modal-fieldset-" + i);
                if (el) {
                    el.style.display = "none";
                    el.classList.remove("active");
                }
            }

            // Show current step fieldset
            const currentEl = document.getElementById("modal-fieldset-" + step);
            if (currentEl) {
                currentEl.style.display = "block";
                currentEl.classList.add("active");
            }

            // Update indicators
            document.getElementById("modal-dot-1").className = "healthedia-wizard-indicator-dot " + (step > 1 ? "completed" : "active");
            document.getElementById("modal-line-1").className = "healthedia-wizard-indicator-line " + (step > 1 ? "active" : "");

            document.getElementById("modal-dot-2").className = "healthedia-wizard-indicator-dot " + (step === 2 ? "active" : (step > 2 ? "completed" : ""));
            document.getElementById("modal-line-2").className = "healthedia-wizard-indicator-line " + (step > 2 ? "active" : "");

            document.getElementById("modal-dot-3").className = "healthedia-wizard-indicator-dot " + (step === 3 ? "active" : (step > 3 ? "completed" : ""));
            document.getElementById("modal-line-3").className = "healthedia-wizard-indicator-line " + (step > 3 ? "active" : "");

            document.getElementById("modal-dot-4").className = "healthedia-wizard-indicator-dot " + (step === 4 ? "active" : "");
        }

        function prevModalStep(step) {
            nextModalStep(step);
        }

        document.addEventListener("DOMContentLoaded", function() {
            // Deskop user profile dropdown
            const dropdownContainer = document.getElementById("healthedia-header-dropdown");
            const dropdownBtn = document.getElementById("header-user-dropdown-btn");

            if (dropdownBtn && dropdownContainer) {
                dropdownBtn.addEventListener("click", function(e) {
                    e.stopPropagation();
                    dropdownContainer.classList.toggle("open");
                });

                document.addEventListener("click", function(e) {
                    if (!dropdownContainer.contains(e.target)) {
                        dropdownContainer.classList.remove("open");
                    }
                });
            }

            // Mobile menu navigation dropdown
            const mobileTrigger = document.getElementById("healthedia-mobile-trigger-container");
            const mobileBtn = document.getElementById("mobile-menu-toggle-btn");

            if (mobileBtn && mobileTrigger) {
                mobileBtn.addEventListener("click", function(e) {
                    e.stopPropagation();
                    mobileTrigger.classList.toggle("open");
                });

                document.addEventListener("click", function(e) {
                    if (!mobileTrigger.contains(e.target)) {
                        mobileTrigger.classList.remove("open");
                    }
                });
            }

            // Edit Account Info Modal Toggle
            const modalOverlay = document.getElementById("healthedia-edit-account-modal");
            const openModalBtn = document.getElementById("header-edit-account-btn");
            const closeModalBtn = document.getElementById("healthedia-modal-close-btn");

            if (openModalBtn && modalOverlay) {
                openModalBtn.addEventListener("click", function(e) {
                    e.preventDefault();
                    modalOverlay.classList.add("open");
                    nextModalStep(1); // Reset wizard back to first step
                    if (dropdownContainer) {
                        dropdownContainer.classList.remove("open");
                    }
                });
            }

            if (closeModalBtn && modalOverlay) {
                closeModalBtn.addEventListener("click", function() {
                    modalOverlay.classList.remove("open");
                });
            }
        });
    </script>
    
    <style id="healthedia-override-css">
        /* Hide theme default headers and footers completely, excluding Healthedia custom elements */
        header.site-header,
        #masthead,
        #colophon,
        footer.site-footer,
        .site-header,
        .site-footer,
        .ast-primary-header-bar,
        .ast-theme-transparent-header,
        .ast-footer-builder-area,
        .theme-default-header,
        .theme-default-footer {
            display: none !important;
            height: 0 !important;
            padding: 0 !important;
            margin: 0 !important;
            opacity: 0 !important;
            visibility: hidden !important;
        }
        body {
            margin: 0 !important;
            padding: 0 !important;
            background: #ffffff !important;
        }
    </style>
    <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://healthedia.org/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://healthedia.org/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://healthedia.org/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://healthedia.org/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://healthedia.org/wp-sitemap-taxonomies-post_tag-1.xml</loc></sitemap><sitemap><loc>https://healthedia.org/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>

    <footer class="healthedia-global-footer">
        <div class="healthedia-footer-container">
            <div class="healthedia-footer-copyright">
                © 2026 Healthedia. All Rights Reserved. Permanent Open-Access Repository.
            </div>
            <div class="healthedia-footer-links">
                <a href="/privacy-policy" class="healthedia-footer-link">Privacy Policy</a><span class="healthedia-footer-dot"></span><a href="/publication-policies" class="healthedia-footer-link">Publication Policies</a><span class="healthedia-footer-dot"></span><a href="/verification" class="healthedia-footer-link">Verification Portal</a><span class="healthedia-footer-dot"></span><a href="/support" class="healthedia-footer-link">Support</a>
            </div>
        </div>
    </footer>

    <style>
        .healthedia-global-footer {
            width: 100%;
            max-width: 1400px;
            margin: 40px auto 20px auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .healthedia-footer-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 24px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .healthedia-footer-copyright {
            font-size: 13px;
            color: #999999;
            font-weight: 500;
        }

        .healthedia-footer-links {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .healthedia-footer-link {
            text-decoration: none;
            font-size: 13px;
            color: #666666;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .healthedia-footer-link:hover {
            color: var(--healthedia-black);
        }

        .healthedia-footer-dot {
            width: 4px;
            height: 4px;
            background-color: #cccccc;
            border-radius: 50%;
            display: inline-block;
        }

        /* Mobile footer styling optimization */
        @media (max-width: 768px) {
            .healthedia-footer-container {
                flex-direction: column;
                text-align: center;
                gap: 16px;
                padding-top: 16px;
            }
            .healthedia-footer-copyright {
                font-size: 12px;
                line-height: 1.4;
            }
            .healthedia-footer-links {
                justify-content: center;
                gap: 10px;
            }
            .healthedia-footer-link {
                font-size: 12px;
                padding: 4px 8px;
                background-color: #f7f7f7;
                border-radius: 6px;
            }
            .healthedia-footer-dot {
                display: none; /* Hide static separators on mobile to prevent layout leakage on wraps */
            }
        }
    </style>
    