* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Arial, sans-serif;
        }
        :root {
            --primary: #ff6b35;
            --secondary: #1a73e8;
            --dark: #202124;
            --light: #f8f9fa;
            --gray: #5f6368;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.7;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #3c4043 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2rem;
        }
        .search-box {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 20px;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            background: white;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #e55a2b;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 5px;
            transition: var(--transition);
            border-bottom: 2px solid transparent;
        }
        nav a:hover, nav a.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--dark);
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h2 {
            color: var(--primary);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            font-size: 1.8rem;
        }
        h3 {
            color: var(--secondary);
            margin: 20px 0 10px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight {
            background: #fff8e1;
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .download-box {
            background: linear-gradient(to right, #1a73e8, #6c8ef5);
            color: white;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            margin: 30px 0;
        }
        .download-btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            margin-top: 15px;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
        }
        aside {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--shadow);
            align-self: start;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: var(--dark);
            font-size: 1.3rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #eee;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ffc107;
            margin: 10px 0;
        }
        .stars i {
            cursor: pointer;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        button[type="submit"] {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            background: #0d62d9;
        }
        .footer-links {
            background: var(--dark);
            padding: 40px 0;
            margin-top: 40px;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            margin: 10px;
            padding: 12px 25px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link a {
            color: #e8eaed;
            text-decoration: none;
            font-weight: 500;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
        }
        .links-container {
            text-align: center;
        }
        footer {
            background: #171717;
            color: #9aa0a6;
            padding: 30px 0;
            text-align: center;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .header-container {
                flex-direction: column;
                align-items: stretch;
            }
            .logo {
                margin-bottom: 15px;
                text-align: center;
            }
            .search-box {
                max-width: 100%;
                margin: 15px 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 15px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
            h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            article, aside {
                padding: 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
