* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
        }
        :root {
            --primary: #1a73e8;
            --primary-dark: #0d47a1;
            --secondary: #ff6d00;
            --dark: #202124;
            --light: #f8f9fa;
            --gray: #5f6368;
            --success: #0f9d58;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f5f7fa;
            color: var(--dark);
            line-height: 1.7;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            background: linear-gradient(to right, var(--primary-dark), var(--primary));
            color: white;
        }
        .btn-secondary {
            background: linear-gradient(to right, var(--secondary), #e65100);
        }
        .section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
            position: relative;
            padding-bottom: 10px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        .card {
            background: white;
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        .highlight {
            background: linear-gradient(120deg, #ffecb3 0%, #ffecb3 100%);
            padding: 20px;
            border-left: 5px solid var(--secondary);
            border-radius: var(--radius);
            margin: 25px 0;
        }
        .feature-list li {
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
        }
        .feature-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }
        .header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo a {
            color: inherit;
        }
        .search-box {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 30px;
            position: relative;
        }
        .search-box form {
            display: flex;
        }
        .search-input {
            width: 100%;
            padding: 12px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary);
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--dark);
            cursor: pointer;
        }
        .nav-container {
            background-color: var(--dark);
            border-radius: var(--radius) var(--radius) 0 0;
        }
        .navbar {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-link {
            color: white;
            padding: 18px 22px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary);
            background-color: rgba(255,255,255,0.05);
        }
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20%;
            width: 60%;
            height: 3px;
            background: var(--secondary);
            border-radius: 3px 3px 0 0;
            transform: scaleX(0);
            transition: var(--transition);
        }
        .nav-link:hover:after, .nav-link.active:after {
            transform: scaleX(1);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f1f3f4;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--dark);
            font-weight: 500;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: var(--gray);
            font-size: 0.8rem;
        }
        .hero {
            background: linear-gradient(rgba(26, 115, 232, 0.9), rgba(13, 71, 161, 0.9)), url('https://images.unsplash.com/photo-1553440569-bcc63803a83d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
            border-radius: 0 0 var(--radius) var(--radius);
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--primary-dark);
            border-bottom: 2px solid #eaeaea;
            padding-bottom: 8px;
        }
        .article-content h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: var(--dark);
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content ul, .article-content ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        .article-content blockquote {
            border-left: 4px solid var(--secondary);
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: var(--gray);
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .info-table th {
            background-color: var(--primary);
            color: white;
            padding: 15px;
            text-align: left;
        }
        .info-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        .info-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .info-table tr:hover {
            background-color: #f1f5fd;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary);
            color: var(--dark);
        }
        .download-box {
            text-align: center;
            background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
            color: white;
            padding: 30px;
            border-radius: var(--radius);
        }
        .download-box h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .stats {
            display: flex;
            justify-content: space-around;
            margin: 20px 0;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #ffcc00;
        }
        .comment-section, .rating-section {
            margin-top: 50px;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .rating-stars i {
            color: #ffc107;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .footer-links {
            background-color: var(--dark);
            padding: 40px 0;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            background-color: rgba(255,255,255,0.05);
            color: #ddd;
            padding: 12px 25px;
            margin: 0 10px 15px 0;
            border-radius: 30px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: #151515;
            color: #aaa;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-main {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .navbar {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                border-radius: 0 0 var(--radius) var(--radius);
                z-index: 999;
            }
            .navbar.active {
                display: flex;
            }
            .nav-link {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }
            .search-box {
                margin: 15px 0;
                max-width: 100%;
                order: 3;
                flex-basis: 100%;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .stats {
                flex-direction: column;
                gap: 20px;
            }
        }
        @media (max-width: 480px) {
            .section {
                padding: 40px 0;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .article-content h2 {
                font-size: 1.5rem;
            }
            .btn {
                padding: 12px 24px;
            }
        }
