* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
        }
        :root {
            --primary: #1a237e;
            --secondary: #ff5722;
            --accent: #4caf50;
            --dark: #121212;
            --light: #f5f5f5;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, #283593 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo span {
            background: linear-gradient(90deg, #ff9800, #ff5722);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffcc80;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            color: var(--secondary);
            padding-left: 10px;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 20px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.9rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 8px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        main {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        article h1 {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 10px;
        }
        article h2 {
            color: var(--primary);
            margin: 2rem 0 1rem;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
            font-size: 1.6rem;
        }
        article h3 {
            color: #333;
            margin: 1.5rem 0 0.8rem;
            font-size: 1.3rem;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight {
            background-color: #e3f2fd;
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight strong {
            color: var(--primary);
            font-size: 1.1rem;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .feature-item {
            background: #f5f5f5;
            padding: 1rem;
            border-radius: var(--border-radius);
            border-left: 3px solid var(--accent);
        }
        .feature-item i {
            color: var(--accent);
            margin-right: 8px;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            display: block;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        figcaption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 8px;
            font-size: 0.9rem;
        }
        aside {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 1.5rem;
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 8px;
            border-bottom: 2px solid #eee;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex: 1;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #0d1b6b;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            direction: ltr;
        }
        .stars input {
            display: none;
        }
        .stars label {
            color: #ddd;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #ffc107;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: #3d8b40;
            transform: translateY(-2px);
        }
        .footer-links {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }
        .footer-links h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .web-link a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            width: 100%;
        }
        .social-links {
            display: flex;
            gap: 1rem;
            font-size: 1.2rem;
        }
        .social-links a {
            color: #aaa;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--secondary);
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            article h1 {
                font-size: 1.8rem;
            }
            article h2 {
                font-size: 1.4rem;
            }
            main {
                padding: 1.5rem;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            header, aside, .footer-links, footer, .mobile-nav-toggle {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            .container {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
            main {
                box-shadow: none;
                padding: 0;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        a:focus,
        button:focus,
        input:focus,
        textarea:focus {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main, .sidebar-widget {
            animation: fadeIn 0.5s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 2px;
        }
        .stat-box {
            display: flex;
            justify-content: space-around;
            background: linear-gradient(135deg, var(--primary), #3949ab);
            color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            text-align: center;
        }
        .stat-item {
            display: flex;
            flex-direction: column;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
        }
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .comparison-table th {
            background-color: var(--primary);
            color: white;
            padding: 12px;
            text-align: left;
        }
        .comparison-table td {
            padding: 12px;
            border-bottom: 1px solid #eee;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .comparison-table tr:hover {
            background-color: #f0f0f0;
        }
        blockquote {
            border-left: 4px solid var(--secondary);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #fafafa;
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        blockquote footer {
            background: transparent;
            color: var(--gray);
            font-style: normal;
            font-size: 0.9rem;
            margin-top: 1rem;
            padding: 0;
            text-align: right;
        }
        .download-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--secondary), #ff9800);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            margin: 1.5rem 0;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
            text-align: center;
        }
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
        }
        .download-btn i {
            margin-right: 8px;
        }
