:root {
            --primary: #c62828;
            --primary-dark: #8e0000;
            --secondary: #1a237e;
            --light: #f5f5f5;
            --dark: #212121;
            --gray: #757575;
            --success: #2e7d32;
            --warning: #f9a825;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background: #fafafa;
            direction: ltr;
            text-align: left;
        }
        h1, h2, h3, h4 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
            padding: 0.75rem;
            color: white;
            border-radius: var(--radius);
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            padding-left: 0.5rem;
            border-left: 4px solid var(--primary);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary);
        }
        .logo:hover {
            text-decoration: none;
        }
        .search-form {
            display: flex;
            max-width: 400px;
            flex-grow: 1;
            margin: 0 2rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.75rem 1rem;
            border: 2px solid var(--secondary);
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--primary);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }
        nav {
            padding: 1rem 0;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            justify-content: center;
        }
        .nav-links a {
            font-weight: 600;
            color: var(--dark);
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
        }
        .nav-links a:hover {
            background: var(--light);
            text-decoration: none;
        }
        .breadcrumb {
            background: var(--light);
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
            color: var(--gray);
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .hero-image {
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
        }
        .hero-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .hero-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .highlight {
            background: linear-gradient(135deg, #ffecb3 0%, #ffcc80 100%);
            padding: 2rem;
            border-radius: var(--radius);
            border-left: 5px solid var(--warning);
            margin: 2rem 0;
        }
        .highlight h3 {
            border: none;
            padding: 0;
            color: var(--dark);
        }
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            overflow: hidden;
        }
        th {
            background: var(--secondary);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        td {
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }
        tr:hover {
            background: #f9f9f9;
        }
        blockquote {
            border-left: 4px solid var(--primary);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--gray);
        }
        .rating-section, .comment-section {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-top: 2.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: var(--warning);
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        input, textarea, select {
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        button, .btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: var(--primary-dark);
            text-decoration: none;
        }
        .comments-list {
            margin-top: 2rem;
        }
        .comment {
            border: 1px solid #eee;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
            background: #fcfcfc;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            color: var(--gray);
            font-size: 0.9rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light);
        }
        .quick-links {
            list-style: none;
            padding: 0;
        }
        .quick-links li {
            margin-bottom: 0.75rem;
        }
        .quick-links a {
            display: block;
            padding: 0.75rem;
            background: var(--light);
            border-radius: var(--radius);
            border-left: 3px solid var(--primary);
        }
        .quick-links a:hover {
            background: #e0e0e0;
            text-decoration: none;
        }
        .longtail-links {
            background: var(--secondary);
            color: white;
            padding: 2.5rem 0;
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }
        .web-link a {
            color: white;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                margin: 1rem 0 0;
                max-width: 100%;
                min-width: 100%;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.75rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: var(--shadow);
                padding: 1rem;
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .header-top {
                padding: 0.75rem 0;
            }
            article, .rating-section, .comment-section {
                padding: 1.5rem;
            }
            .breadcrumb {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }
        }
