* {
            box-sizing: border-box;
        }
        :root {
            --primary: #fd8216;
            --background: #fafafa;
            --card-bg: #fff;
            --text-dark: #222;
            --text-light: #666;
            --border-radius: 18px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        body {
            margin: 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--background);
            color: var(--text-dark);
            padding-top: 70px; /* Adjust if navbar height changes */
        }
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem 2rem 1.5rem 2rem;
            background: #fff;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            /* Ensure navbar is above other content */
            max-width: 100vw;
        }
        .navbar .logo {
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .navbar .logo img {
            height: 38px;
        }
        .navbar .nav-links {
            display: flex;
            gap: 2rem;
            transition: var(--transition);
        }
        .navbar .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: color 0.2s;
            position: relative;
            text-align: center;
        }
        .navbar .nav-links a.active,
        .navbar .nav-links a:hover {
            color: var(--primary);
        }
        .navbar .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--primary);
            cursor: pointer;
            margin-left: 1rem;
        }
        @media (max-width: 768px) {
            .navbar {
                flex-direction: row;
                padding: 1rem 0.5rem;
            }
            .navbar .nav-links {
                position: absolute;
                top: 100%;
                right: 0;
                background: #fff;
                flex-direction: column;
                /* align-items: flex-end; */
                gap: 1.5rem;
                width: 100%;
                padding: 2rem 0rem;
                box-shadow: 0 8px 32px rgba(0,0,0,0.08);
                /* border-radius: 0 0 0 18px; */
                opacity: 0;
                pointer-events: none;
                transform: translateY(-10px);
                z-index: 100;
                text-align: center;
            }
            .navbar .nav-links.open {
                opacity: 1;
                pointer-events: auto;
                transform: translateY(0);
                text-align: center;
            }
            .nav-links.open a{
                text-align: center;
            }
            .navbar .menu-toggle {
                display: block;
            }
        }
        .featured-image {
            width: 100%;
            /* max-width: 100vw; */
            height: 340px;
            object-fit: cover;
            display: block;
            margin-left: 50%;
            transform: translateX(-50%);
            /* position: absolute; */
            /* padding-top: 90px; */
        }
        .article-container {
            max-width: 800px;
            margin: -120px auto 0 auto;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
            padding: 2.5rem 2rem 2rem 2rem;
            position: relative;
            z-index: 2;
        }
        .article-container p,li{
            text-align: justify;
        }
        ol{
            padding-left: 20px;
        }
        .back-link {
            display: inline-block;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }
        .back-link:hover {
            text-decoration: underline;
            color: #e85a3c;
        }
        .meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.2rem;
            font-size: 0.98rem;
            color: #888;
        }
        .meta img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #fff;
            box-shadow: 0 2px 8px rgba(255,122,89,0.08);
        }
        .meta .author {
            font-weight: 600;
            color: var(--primary);
        }
        .meta .date {
            color: #aaa;
        }
        .meta .tag {
            background: var(--primary);
            color: #fff;
            font-size: 0.85rem;
            padding: 0.2rem 0.9rem;
            border-radius: 50px;
            font-weight: 600;
            margin-left: auto;
        }
        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.1rem;
            margin-bottom: 1.2rem;
        }
        .blog-content {
            font-size: 1.13rem;
            line-height: 1.8;
            color: #222;
            margin-bottom: 2.5rem;
        }
        .share-row {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            margin-bottom: 2.5rem;
        }
        .share-label {
            font-size: 1.05rem;
            color: #888;
        }
        .share-icon {
            color: var(--primary);
            font-size: 1.5rem;
            transition: var(--transition);
            text-decoration: none;
        }
        .share-icon:hover {
            color: #e85a3c;
        }
        .related-posts {
            margin-top: 3rem;
        }
        .related-title {
            font-size: 1.1rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        .related-list {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .related-card {
            background: #f5f5f5;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            padding: 1rem;
            flex: 1 1 220px;
            min-width: 180px;
            text-decoration: none;
            color: var(--text-dark);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .related-card:hover {
            background: #fff0ea;
            color: var(--primary);
            box-shadow: 0 4px 16px rgba(255,122,89,0.10);
        }
        .related-card .related-title {
            color: var(--primary);
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        .footer {
            margin-top: 4rem;
            padding: 2rem 0 1rem 0;
            background: #fff;
            text-align: center;
            color: #aaa;
            font-size: 1rem;
            border-top: 1px solid #eee;
        }
        @media (max-width: 900px) {
            .article-container {
                margin: -80px auto 0 auto;
                padding: 1.5rem 0.7rem 1.5rem 0.7rem;
            }
        }
        @media (max-width: 600px) {
            .featured-image {
                height: 250px;
            }
            .article-container {
                width: 85%;
                margin: 20px auto;
                padding: 1rem;
                position:inherit;
            }
            h1 {
                font-size: 1.2rem;
            }
            .blog-content {
                font-size: 1rem;
            }
            .meta{
                gap: 0.3rem;
            }
        }