* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        :root {
            --primary: #1a73e8;
            --primary-dark: #0d47a1;
            --secondary: #ff9800;
            --dark: #202124;
            --light: #f8f9fa;
            --gray: #5f6368;
            --success: #34a853;
            --border: #dadce0;
        }
        body {
            background-color: #fff;
            color: var(--dark);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: var(--secondary);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .desktop-nav a {
            font-weight: 600;
            color: var(--gray);
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: var(--primary);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: var(--light);
            border-radius: 24px;
            padding: 8px 16px;
            border: 1px solid var(--border);
        }
        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            width: 200px;
            padding: 5px;
            font-size: 0.95rem;
        }
        .search-box button {
            background: transparent;
            border: none;
            color: var(--gray);
            cursor: pointer;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            background: var(--light);
            padding: 12px 0;
            font-size: 0.9rem;
            color: var(--gray);
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
        }
        .article-header {
            margin-bottom: 30px;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .meta {
            display: flex;
            gap: 20px;
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-body {
            font-size: 1.1rem;
            color: #333;
        }
        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-body h2 {
            font-size: 1.8rem;
            color: var(--primary-dark);
            margin: 35px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border);
        }
        .article-body h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 25px 0 10px;
        }
        .article-body ul, .article-body ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #e8f0fe;
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip {
            background: #fff8e1;
            border-left: 4px solid var(--secondary);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .warning {
            background: #ffebee;
            border-left: 4px solid #d32f2f;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }
        .btn:hover {
            background: var(--primary-dark);
        }
        .sidebar {
            background: #fff;
        }
        .sidebar-widget {
            background: var(--light);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid var(--border);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--dark);
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffc107;
            margin-bottom: 15px;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 1rem;
        }
        .comments-section {
            margin-top: 50px;
        }
        .comment {
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .web-links {
            background: var(--light);
            padding: 40px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: 6px;
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .web-link a {
            color: var(--primary);
            font-weight: 500;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background: var(--dark);
            color: #fff;
            padding: 40px 0 20px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #444;
            width: 100%;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .desktop-nav, .search-box {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .main-content {
                padding: 20px 0;
                gap: 20px;
            }
        }
        @media print {
            .site-header, .sidebar, .web-links, .site-footer, .comments-section, .breadcrumb {
                display: none;
            }
        }
