:root {
            --primary: #1a73e8;
            --secondary: #ea4335;
            --accent: #34a853;
            --dark: #202124;
            --light: #f8f9fa;
            --gray: #5f6368;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
            font-size: 18px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #3c4043 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--primary);
            text-shadow: 0 0 10px rgba(26, 115, 232, 0.5);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e8f0fe;
            border-bottom: 1px solid #dadce0;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb .current {
            color: var(--gray);
            font-weight: 600;
        }
        .search-section {
            background-color: white;
            padding: 3rem 0;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
        }
        .search-box {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 1.2rem 1.5rem;
            font-size: 1.2rem;
            border: 2px solid var(--primary);
            border-radius: 50px;
            outline: none;
            transition: var(--transition);
        }
        .search-box input:focus {
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
        }
        .search-box button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #0d62d9;
            transform: translateY(-50%) scale(1.05);
        }
        main {
            padding: 3rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .article-content {
            background-color: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
        }
        h3 {
            color: var(--secondary);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.2rem;
        }
        .highlight {
            background-color: #e8f0fe;
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: var(--primary);
            font-size: 1.3rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: linear-gradient(135deg, var(--primary) 0%, #0d62d9 100%);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        .image-container {
            margin: 3rem 0;
            text-align: center;
        }
        .feature-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: var(--transition);
        }
        .feature-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            margin-top: 1rem;
            font-style: italic;
            color: var(--gray);
            font-size: 1rem;
        }
        .sidebar {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .rating-widget {
            text-align: center;
            padding-bottom: 2rem;
            border-bottom: 2px dashed #eee;
            margin-bottom: 2rem;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
        }
        .rating-btn:hover {
            background-color: #2a954a;
            transform: scale(1.05);
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 1rem;
        }
        .comment-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #0d62d9;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 4rem 0 3rem;
        }
        .web-link {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            padding: 0.8rem;
            border-left: 4px solid var(--accent);
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--primary);
            background-color: #f0f7ff;
            padding-left: 1.2rem;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #3c4043;
            color: #9aa0a6;
            font-size: 1rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-content {
                padding: 2rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .longtail-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            p {
                font-size: 1.1rem;
            }
            .search-box input {
                font-size: 1rem;
                padding: 1rem;
            }
            .search-box button {
                padding: 0.7rem 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar {
            animation: fadeIn 0.8s ease-out;
        }
        @media print {
            header, .search-section, .sidebar, footer {
                display: none;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
        }
