        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a365d;
            --secondary-color: #d4af37;
            --accent-color: #e53e3e;
            --text-dark: #2d3748;
            --text-light: #f7fafc;
            --bg-light: #edf2f7;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2d3748 100%);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .logo a:hover {
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background-color: rgba(212, 175, 55, 0.2);
            color: var(--secondary-color);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background-color: var(--primary-color);
            padding: 2rem;
            transition: var(--transition);
            z-index: 1001;
            overflow-y: auto;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--secondary-color);
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.2rem;
            padding: 0.8rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .mobile-nav-links a:hover {
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }
        .close-menu {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
            display: none;
        }
        .overlay.active {
            display: block;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 1.5rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        .breadcrumb .separator {
            margin: 0 0.5rem;
            color: #718096;
        }
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 3px solid var(--secondary-color);
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #718096;
            font-size: 0.95rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content > * {
            margin-bottom: 1.8rem;
        }
        .article-content h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-top: 2.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--bg-light);
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #4a5568;
            margin-top: 2rem;
        }
        .article-content p {
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-left: 4px solid var(--secondary-color);
            margin: 2rem 0;
            border-radius: 0 4px 4px 0;
        }
        .tip-box {
            background-color: #e6fffa;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #38b2ac;
            margin: 2rem 0;
        }
        .tip-box h4 {
            color: #234e52;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .card {
            background: var(--bg-light);
            border-radius: 8px;
            padding: 1.5rem;
            transition: var(--transition);
            border: 1px solid #e2e8f0;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .card h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .interactive-section {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
            border: 1px solid #cbd5e0;
        }
        .interactive-section h3 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #cbd5e0;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }
        .btn:hover {
            background-color: #c19b0c;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #cbd5e0;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #f6e05e;
        }
        .sidebar {
            padding: 2rem 0;
        }
        .sidebar-widget {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border: 1px solid #e2e8f0;
        }
        .sidebar-widget h3 {
            color: var(--primary-color);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-color);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
        }
        .tag {
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--primary-color);
            text-decoration: none;
            border: 1px solid #cbd5e0;
            transition: var(--transition);
        }
        .tag:hover {
            background: var(--secondary-color);
            color: white;
            border-color: var(--secondary-color);
        }
        .recent-posts ul {
            list-style: none;
        }
        .recent-posts li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .recent-posts a {
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition);
            display: block;
        }
        .recent-posts a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .web-links-section {
            max-width: 1200px;
            margin: 3rem auto 1.5rem;
            padding: 0 1.5rem;
        }
        .web-links-section h3 {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: var(--bg-light);
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        .site-footer {
            background: var(--primary-color);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-col h4 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 0.8rem;
        }
        .footer-col a {
            color: #cbd5e0;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-col a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: var(--transition);
        }
        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .text-bold {
            font-weight: 800;
            color: var(--primary-color);
        }
        .text-highlight {
            background-color: #fed7d7;
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            .sidebar-widget {
                padding: 1.2rem;
            }
        }
        @media print {
            .site-header,
            .sidebar,
            .interactive-section,
            .web-links-section,
            .site-footer {
                display: none;
            }
            body {
                color: #000;
                background: #fff;
            }
            .main-container {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
        }
