* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #f97316;
            --secondary: #1e40af;
            --accent: #10b981;
            --dark: #1f2937;
            --light: #f9fafb;
            --text: #374151;
            --border: #d1d5db;
        }
        body {
            background-color: #f8fafc;
            color: var(--text);
            line-height: 1.7;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--primary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #111827 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary);
        }
        .logo:hover {
            color: var(--primary);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 1.8rem;
            list-style: none;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            padding: 5px 0;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            background-color: #e5e7eb;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 8px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 8px;
            color: #6b7280;
        }
        .search-container {
            max-width: 800px;
            margin: 2.5rem auto;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(to right, var(--primary), #ea580c);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to right, #ea580c, #c2410c);
        }
        main {
            padding: 2rem 0 4rem;
        }
        article {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        h1 {
            color: var(--dark);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-left: 6px solid var(--primary);
            padding-left: 20px;
        }
        h2 {
            color: var(--secondary);
            font-size: 1.9rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--border);
        }
        h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff7ed;
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .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(145deg, #ffffff, #f0f4f8);
            border-radius: 10px;
            padding: 1.8rem;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.06);
            border-top: 5px solid var(--accent);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        .feature-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2.5rem auto;
            display: block;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .feature-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #6b7280;
            margin-top: 8px;
            font-size: 0.95rem;
        }
        .download-section {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            padding: 3rem;
            border-radius: 15px;
            text-align: center;
            margin: 3.5rem 0;
        }
        .download-btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 18px 45px;
            font-size: 1.3rem;
            font-weight: 700;
            border-radius: 50px;
            margin-top: 1.5rem;
            box-shadow: 0 6px 15px rgba(249, 115, 22, 0.4);
            transition: all 0.3s ease;
        }
        .download-btn:hover {
            background-color: #ea580c;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(249, 115, 22, 0.5);
        }
        .user-interaction {
            background-color: #f9fafb;
            border-radius: 12px;
            padding: 2.5rem;
            margin-top: 4rem;
            border: 1px solid var(--border);
        }
        .rating-section, .comment-section {
            margin-bottom: 3rem;
        }
        .stars {
            display: flex;
            gap: 8px;
            margin: 15px 0 25px;
        }
        .star {
            font-size: 2rem;
            color: #d1d5db;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
        }
        .interaction-form {
            display: grid;
            gap: 1.5rem;
            max-width: 700px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            padding: 15px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 16px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s;
            justify-self: start;
        }
        .submit-btn:hover {
            background-color: #059669;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.2rem;
            margin: 3.5rem 0;
        }
        .web-link {
            background-color: white;
            padding: 1.2rem 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            transform: translateX(5px);
            border-left-color: var(--primary);
        }
        footer {
            background-color: var(--dark);
            color: #d1d5db;
            padding: 3.5rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.2rem;
            display: block;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #d1d5db;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            font-size: 0.95rem;
            color: #9ca3af;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            .header-content { padding: 0 15px; }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: var(--dark);
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                gap: 2rem;
                transition: 0.5s;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            article {
                padding: 1.8rem;
            }
            .download-section {
                padding: 2rem 1.5rem;
            }
            .search-input {
                padding: 15px 20px;
            }
        }
        @media (max-width: 480px) {
            .container, .search-container {
                padding: 0 15px;
            }
            h1 { font-size: 1.9rem; }
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.3rem; }
            .stat-card {
                padding: 1.3rem;
            }
            .stat-number {
                font-size: 2.2rem;
            }
            .download-btn {
                padding: 15px 35px;
                font-size: 1.1rem;
            }
            .user-interaction {
                padding: 1.8rem;
            }
            .long-tail-links {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            header, .search-container, .user-interaction, 
            .long-tail-links, footer, .download-section {
                display: none;
            }
            body {
                background-color: white;
                color: black;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
        }
