        * {
            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;
            --success-color: #2ECC71;
            --warning-color: #FF9F1C;
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Roboto', 'Noto Sans Devanagari', sans-serif;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--light-color);
            font-size: 18px;
            direction: ltr;
            text-align: left;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: var(--dark-color);
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent-color);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: var(--secondary-color);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        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);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            color: inherit;
        }
        .logo-icon {
            color: var(--accent-color);
            font-size: 2.5rem;
        }
        .logo-text {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: var(--font-heading);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark-color);
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: var(--shadow);
            z-index: 999;
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            transition: var(--transition);
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-nav a {
            display: block;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .breadcrumb {
            background-color: #f5f5f5;
            padding: 12px 0;
            margin-bottom: 30px;
        }
        .breadcrumb-container {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .breadcrumb .separator {
            color: #999;
        }
        .breadcrumb .current {
            color: var(--primary-color);
            font-weight: 600;
        }
        main {
            padding: 30px 0;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            padding-right: 20px;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            padding: 10px;
            font-size: 0.9rem;
            background-color: #f9f9f9;
        }
        .highlight {
            background-color: rgba(255, 214, 102, 0.3);
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--accent-color);
            margin: 25px 0;
        }
        .important {
            font-weight: 700;
            color: var(--primary-color);
        }
        .term {
            font-weight: 600;
            color: var(--secondary-color);
        }
        .quote {
            border-left: 5px solid var(--secondary-color);
            padding-left: 25px;
            margin: 25px 0;
            font-style: italic;
            color: var(--text-light);
        }
        .quote-author {
            text-align: right;
            font-weight: 600;
            margin-top: 10px;
            color: var(--dark-color);
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-item {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
            border-top: 4px solid var(--primary-color);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-color);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            margin-top: 10px;
        }
        .interactive-section {
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 40px 0;
        }
        .search-box {
            display: flex;
            margin-bottom: 40px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            font-family: var(--font-body);
        }
        .search-box button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: var(--secondary-color);
        }
        .rating-section {
            text-align: center;
            margin: 40px 0;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--warning-color);
        }
        .comment-form {
            margin-top: 40px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: var(--font-body);
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary-color);
            outline: none;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .sidebar {
            padding-left: 20px;
            border-left: 1px solid #eee;
        }
        @media (max-width: 992px) {
            .sidebar {
                padding-left: 0;
                border-left: none;
                border-top: 1px solid #eee;
                padding-top: 30px;
            }
        }
        .sidebar-widget {
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            padding: 25px;
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #ddd;
        }
        .sidebar-links li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .longtail-links {
            background-color: var(--dark-color);
            padding: 40px 0;
            margin-top: 60px;
        }
        .longtail-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        .web-link a {
            color: white;
            display: block;
        }
        footer {
            background-color: #111;
            color: #aaa;
            padding: 40px 0 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            body {
                font-size: 16px;
            }
            .header-container {
                padding: 12px 0;
            }
            .logo {
                font-size: 1.8rem;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .breadcrumb-container {
                font-size: 0.9rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .logo {
                font-size: 1.5rem;
            }
            .interactive-section {
                padding: 20px;
            }
        }
        @media print {
            header, .sidebar, .interactive-section, .longtail-links, footer {
                display: none;
            }
            body {
                font-size: 12pt;
                line-height: 1.5;
                color: black;
                background: white;
            }
            a {
                color: black;
                text-decoration: underline;
            }
            .container {
                max-width: 100%;
                padding: 0;
            }
            main {
                box-shadow: none;
                padding: 0;
            }
        }
