        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #FF6B35;
            --secondary-color: #004E89;
            --accent-color: #FFD166;
            --dark-color: #1A1A2E;
            --light-color: #F8F9FA;
            --text-color: #333333;
            --text-light: #666666;
            --border-color: #E0E0E0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background-color: var(--light-color);
            font-size: 18px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4, h5, h6 {
            color: var(--dark-color);
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-top: 2.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-color);
        }
        strong {
            color: var(--primary-color);
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: var(--secondary-color);
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary-color);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        .nav-desktop a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-color);
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: white;
            padding: 20px;
            box-shadow: var(--shadow);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background-color: #f5f5f5;
            padding: 12px 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .breadcrumb span {
            color: var(--text-light);
            margin: 0 8px;
        }
        .search-container {
            background-color: var(--secondary-color);
            padding: 30px 0;
            margin-bottom: 40px;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
        }
        .search-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: #ff5722;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 30px 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-title {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        .rating-widget {
            text-align: center;
        }
        .rating-stars {
            font-size: 2rem;
            color: #FFD700;
            margin: 15px 0;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-select {
            padding: 10px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            font-size: 1rem;
        }
        .rating-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-button:hover {
            background-color: #ff5722;
        }
        .comments-section {
            margin-top: 60px;
            background-color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-input, .form-textarea {
            padding: 15px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-submit {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 15px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .form-submit:hover {
            background-color: #003366;
        }
        .footer-links {
            background-color: var(--dark-color);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.05);
            color: white;
            padding: 12px 20px;
            margin: 0 10px 10px 0;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 107, 53, 0.2);
            color: var(--accent-color);
        }
        footer {
            background-color: #111;
            color: #aaa;
            padding: 40px 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .copyright {
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 12px 0;
            }
            .article-content {
                padding: 25px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            body {
                font-size: 16px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .article-content, .comments-section, .sidebar-widget {
                padding: 20px;
            }
            .search-input {
                padding: 15px;
                font-size: 1rem;
            }
        }
        .hindi-term {
            font-weight: 700;
            color: var(--primary-color);
        }
        .highlight-box {
            background-color: #FFF8E1;
            border-left: 5px solid var(--accent-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .stat-box {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
            text-align: center;
        }
        .stat-item {
            flex: 1;
            min-width: 200px;
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-color);
            display: block;
            margin-bottom: 10px;
        }
        .stat-text {
            font-size: 1.1rem;
            color: var(--text-light);
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .comparison-table th {
            background-color: var(--secondary-color);
            color: white;
            padding: 20px;
            text-align: left;
        }
        .comparison-table td {
            padding: 18px 20px;
            border-bottom: 1px solid var(--border-color);
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .comparison-table tr:hover {
            background-color: #f0f7ff;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .icon-list {
            list-style-type: none;
            margin: 25px 0;
        }
        .icon-list li {
            margin-bottom: 15px;
            padding-left: 35px;
            position: relative;
        }
        .icon-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2em;
        }
