:root {
            --primary-color: #c53030;
            --secondary-color: #2d3748;
            --accent-color: #d69e2e;
            --light-bg: #f7fafc;
            --dark-bg: #1a202c;
            --text-color: #2d3748;
            --text-light: #718096;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        .site-header {
            background-color: #fff;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: var(--primary-color);
            font-family: 'Georgia', serif;
            letter-spacing: -1px;
            position: relative;
        }
        .logo a::after {
            content: '🇮🇳';
            font-size: 1.2rem;
            position: absolute;
            top: -5px;
            right: -25px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            text-decoration: none;
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--primary-color);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .search-box {
            display: flex;
            align-items: center;
            background-color: var(--light-bg);
            border-radius: 50px;
            padding: 0.5rem 1rem;
            width: 300px;
        }
        .search-box input {
            border: none;
            background: transparent;
            width: 100%;
            padding: 0.5rem;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: transparent;
            border: none;
            color: var(--primary-color);
            cursor: pointer;
            font-size: 1.2rem;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary-color);
        }
        .breadcrumb {
            max-width: var(--max-width);
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
            color: var(--text-light);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 2rem 3rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .main-content {
            background-color: #fff;
            padding: 2rem 0;
        }
        article {
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
            font-weight: 800;
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: var(--secondary-color);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
            font-weight: 700;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: var(--secondary-color);
            font-weight: 600;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 2rem;
            padding-left: 1rem;
            border-left: 4px solid var(--accent-color);
        }
        .highlight-box {
            background-color: var(--light-bg);
            border-left: 5px solid var(--accent-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box h4 {
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #f6f8fc, #edf2f7);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .stat-desc {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        .featured-img:hover {
            transform: scale(1.01);
        }
        .img-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        blockquote {
            font-size: 1.2rem;
            color: var(--secondary-color);
            font-style: italic;
            border-left: 4px solid var(--primary-color);
            padding-left: 1.5rem;
            margin: 2.5rem 0;
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 0 10px 10px 0;
        }
        blockquote footer {
            margin-top: 1rem;
            font-size: 1rem;
            color: var(--text-light);
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .term {
            font-weight: 700;
            color: var(--primary-color);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .key-point {
            background-color: #fff8e1;
            padding: 1.2rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--accent-color);
        }
        .sidebar {
            padding-top: 2rem;
        }
        .sidebar-widget {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .sidebar-title {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--secondary-color);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffc107;
            margin: 1rem 0;
        }
        .stars span {
            cursor: pointer;
            transition: var(--transition);
            margin: 0 2px;
        }
        .stars span:hover {
            transform: scale(1.2);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form select,
        .rating-form textarea {
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        .rating-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: #9b2c2c;
        }
        .comment-list {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 0.5rem;
        }
        .comment-item {
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: var(--secondary-color);
        }
        .comment-date {
            font-size: 0.85rem;
            color: var(--text-light);
        }
        .comment-text {
            margin-top: 0.5rem;
        }
        .comment-form h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .btn-submit {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }
        .btn-submit:hover {
            background-color: #9b2c2c;
            transform: translateY(-2px);
        }
        .footer-links {
            background-color: var(--dark-bg);
            padding: 3rem 2rem;
        }
        .links-container {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1rem;
            display: block;
        }
        .web-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .site-footer {
            background-color: #1a202c;
            color: #cbd5e0;
            padding: 2rem;
            text-align: center;
        }
        .footer-container {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid var(--border-color);
                padding: 0.8rem 0;
            }
            .search-box {
                width: 100%;
                order: 2;
                margin-top: 1rem;
                display: none;
            }
            .search-box.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb,
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .lead {
                font-size: 1.1rem;
            }
            .links-container {
                grid-template-columns: 1fr;
            }
        }
        .text-center { text-align: center; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .bold { font-weight: 700; }
        .italic { font-style: italic; }
        .underline { text-decoration: underline; }
        .color-primary { color: var(--primary-color); }
        .color-accent { color: var(--accent-color); }
