        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #FF6B35;
            --secondary-color: #004E89;
            --accent-color: #FFD166;
            --light-color: #F8F9FA;
            --dark-color: #212529;
            --text-color: #333333;
            --gray-light: #E9ECEF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --container-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--light-color);
            direction: ltr;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        h1 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-top: 2rem;
        }
        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 {
            font-weight: 700;
            color: var(--primary-color);
        }
        em {
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: 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;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--secondary-color);
        }
        .logo:hover {
            color: var(--primary-color);
        }
        .logo i {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .nav-desktop a:hover {
            background-color: var(--gray-light);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 10px;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: var(--dark-color);
            border-radius: 2px;
            transition: var(--transition);
        }
        @media (max-width: 992px) {
            .hamburger {
                display: flex;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: white;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            padding: 2rem;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            overflow-y: auto;
        }
        .nav-mobile.active {
            transform: translateX(0);
        }
        .nav-mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--gray-light);
        }
        .nav-mobile-header .logo {
            font-size: 1.8rem;
        }
        .close-menu {
            font-size: 2rem;
            background: none;
            border: none;
            color: var(--dark-color);
            cursor: pointer;
        }
        .nav-mobile-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .nav-mobile-links a {
            padding: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
            border-bottom: 1px solid var(--gray-light);
        }
        .breadcrumb {
            background-color: var(--gray-light);
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
        }
        .breadcrumb-links a {
            color: var(--text-color);
        }
        .breadcrumb-links a:hover {
            color: var(--primary-color);
        }
        .breadcrumb-links i {
            font-size: 0.8rem;
            color: #666;
        }
        main {
            padding: 2rem 0;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            padding-right: 1rem;
        }
        .article-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            color: #666;
            font-size: 0.9rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
            color: var(--primary-color);
        }
        .article-image {
            width: 100%;
            margin: 2rem 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        .article-image img:hover {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.5rem;
            background-color: var(--gray-light);
            border-bottom-left-radius: var(--border-radius);
            border-bottom-right-radius: var(--border-radius);
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .highlight-box {
            background-color: #E8F4FD;
            border-left: 5px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight-box h3 {
            margin-top: 0;
            color: var(--secondary-color);
        }
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-box {
            background-color: var(--light-color);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-box:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-color);
            line-height: 1;
        }
        .stat-text {
            font-weight: 600;
            margin-top: 0.5rem;
        }
        .sidebar {
            background-color: var(--light-color);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            height: fit-content;
            box-shadow: var(--shadow);
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget:last-child {
            margin-bottom: 0;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
            margin-bottom: 1rem;
        }
        .search-form {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--gray-light);
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: var(--secondary-color);
        }
        .rating-widget {
            text-align: center;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.2rem;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .rating-star {
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-star:hover,
        .rating-star.active {
            color: var(--accent-color);
        }
        .rating-score {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .rating-count {
            color: #666;
            font-size: 0.9rem;
        }
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--gray-light);
        }
        .comment-form {
            background-color: var(--light-color);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid var(--gray-light);
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--primary-color);
            outline: none;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .form-button:hover {
            background-color: var(--secondary-color);
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .comment-item {
            background-color: var(--light-color);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--secondary-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .comment-author {
            font-weight: 700;
            color: var(--secondary-color);
        }
        .comment-date {
            color: #666;
            font-size: 0.9rem;
        }
        .footer-links {
            background-color: var(--dark-color);
            padding: 3rem 0;
            margin-top: 2rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: var(--light-color);
            font-weight: 600;
            display: block;
            padding: 0.5rem 0;
        }
        .web-link a:hover {
            color: var(--accent-color);
        }
        footer {
            background-color: #1A1A1A;
            color: #aaa;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .footer-links-small {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .footer-links-small a {
            color: #aaa;
        }
        .footer-links-small a:hover {
            color: white;
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        .section-spacing {
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stats-container {
                grid-template-columns: 1fr;
            }
            .header-top {
                padding: 0.8rem 0;
            }
            .logo {
                font-size: 1.8rem;
            }
        }
        @media print {
            header, .sidebar, .footer-links, footer, .search-form, .comment-form, .rating-widget {
                display: none;
            }
            body {
                font-size: 12pt;
                line-height: 1.5;
                color: black;
                background: white;
            }
            main {
                box-shadow: none;
                padding: 0;
            }
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
