        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Nirmala UI', 'Arial', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            text-align: justify;
            font-size: 1.05rem;
        }
        @font-face {
            font-family: 'Hindi';
            src: local('Nirmala UI'), local('Mangal');
            unicode-range: U+0900-097F;
        }
        :lang(hi) {
            font-family: 'Hindi', 'Segoe UI', sans-serif;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .logo-icon {
            font-size: 2.5rem;
            color: #fbbf24;
        }
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        .logo-main {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }
        .logo-sub {
            font-size: 0.9rem;
            color: #cbd5e0;
            font-weight: 300;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: #fbbf24;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #fbbf24;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #2d3748;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav .nav-link {
            padding: 0.8rem 0;
            border-bottom: 1px solid #4a5568;
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 0.8rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb-links {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
        }
        .breadcrumb-links a {
            color: #4a5568;
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb-links a:hover {
            color: #2d3748;
            text-decoration: underline;
        }
        .breadcrumb-separator {
            color: #a0aec0;
        }
        main {
            padding: 2rem 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        h1 {
            font-size: 2.5rem;
            color: #1a365d;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 3px solid #fbbf24;
            padding-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #e2e8f0;
            color: #718096;
            font-size: 0.95rem;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            color: #2d3748;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        h3 {
            font-size: 1.4rem;
            color: #4a5568;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9db;
            border-left: 4px solid #fbbf24;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .article-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #718096;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .stats-box {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border: 1px solid #cbd5e0;
            border-radius: 10px;
            padding: 1.8rem;
            margin: 2rem 0;
        }
        .stats-title {
            font-size: 1.3rem;
            color: #2d3748;
            margin-bottom: 1.2rem;
            text-align: center;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .stat-item {
            text-align: center;
            padding: 1rem;
        }
        .stat-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2b6cb0;
            display: block;
            line-height: 1;
        }
        .stat-label {
            color: #4a5568;
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .widget-title {
            font-size: 1.3rem;
            color: #2d3748;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #fbbf24;
        }
        .search-form {
            display: flex;
            margin-bottom: 0.5rem;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #cbd5e0;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: #fbbf24;
        }
        .search-button {
            background-color: #fbbf24;
            color: #1a365d;
            border: none;
            border-radius: 0 6px 6px 0;
            padding: 0 1.2rem;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #f59e0b;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 0.5rem 0;
        }
        .rating-star {
            font-size: 1.8rem;
            color: #e2e8f0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-star.active {
            color: #fbbf24;
        }
        .rating-input {
            padding: 0.8rem;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            font-size: 1rem;
        }
        .rating-input:focus {
            outline: none;
            border-color: #fbbf24;
        }
        .form-button {
            background-color: #2b6cb0;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 0.9rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .form-button:hover {
            background-color: #2c5282;
        }
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e2e8f0;
        }
        .comments-title {
            font-size: 1.5rem;
            color: #2d3748;
            margin-bottom: 1.5rem;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-bottom: 2.5rem;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
        }
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-label {
            font-weight: 600;
            color: #4a5568;
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .comment-item {
            background-color: #f7fafc;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #cbd5e0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
        }
        .comment-author {
            font-weight: 600;
            color: #2d3748;
        }
        .comment-date {
            color: #718096;
            font-size: 0.9rem;
        }
        .comment-text {
            line-height: 1.6;
        }
        .footer-links {
            background-color: #2d3748;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .web-link {
            margin-bottom: 1rem;
        }
        .web-link a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
            display: inline-block;
            padding: 0.3rem 0;
        }
        .web-link a:hover {
            color: #fbbf24;
            text-decoration: underline;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        footer {
            background-color: #1a202c;
            color: #cbd5e0;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .footer-links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 0.5rem;
        }
        .footer-link {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: #fbbf24;
        }
        .text-bold {
            font-weight: 700;
        }
        .text-highlight {
            color: #d69e2e;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1.8rem;
            }
            .sidebar-widget {
                padding: 1.5rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.8rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
