        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #2E7D32;
            --secondary: #FF9800;
            --accent: #D32F2F;
            --dark: #1B5E20;
            --light: #F1F8E9;
            --gray: #757575;
            --text: #212121;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        body {
            color: var(--text);
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .header {
            background: linear-gradient(to right, var(--dark), var(--primary));
            color: white;
            padding: 1rem 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--secondary);
            font-style: italic;
        }
        .nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s;
            position: relative;
        }
        .nav-link:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background: var(--light);
            padding: 1rem 2rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb ol {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 900px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 1.5rem;
        }
        .article-title {
            font-size: 2.8rem;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .article-meta {
            color: var(--gray);
            display: flex;
            gap: 1.5rem;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
        }
        .article-content h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #ddd;
        }
        .article-content h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #FFECB3 0%, #FFECB3 100%);
            padding: 1.5rem;
            border-left: 5px solid var(--secondary);
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
            font-weight: 600;
        }
        .tip-box {
            background: #E3F2FD;
            border: 1px solid #2196F3;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .tip-title {
            color: #0D47A1;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 5px solid var(--primary);
            transition: transform 0.5s;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light);
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid var(--primary);
            border-right: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: var(--dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
        }
        .star {
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #FFD700;
        }
        .rating-form {
            display: none;
            margin-top: 1rem;
        }
        .rating-form.show {
            display: block;
        }
        .comments-section {
            margin-top: 3rem;
            border-top: 2px solid #eee;
            padding-top: 2rem;
        }
        .comment-form {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }
        .form-input:focus {
            outline: none;
            border-color: var(--primary);
        }
        .submit-button {
            background: linear-gradient(to right, var(--primary), var(--dark));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(46, 125, 50, 0.3);
        }
        .footer-links {
            background: var(--light);
            padding: 3rem 2rem;
            border-top: 1px solid #ddd;
        }
        .links-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 6px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
            background: #E8F5E9;
        }
        .web-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .footer {
            background: var(--dark);
            color: white;
            text-align: center;
            padding: 2rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 1rem;
            color: #B0BEC5;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .nav {
                width: 100%;
                flex-direction: column;
                display: none;
                gap: 0;
            }
            .nav.show {
                display: flex;
            }
            .nav-link {
                width: 100%;
                text-align: center;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 2rem;
                top: 1.5rem;
            }
            .article {
                padding: 1.5rem;
            }
            .article-title {
                font-size: 2rem;
            }
            .main-container {
                padding: 0 1rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article, .widget {
            animation: fadeIn 0.6s ease-out;
        }
        @media print {
            .nav, .sidebar, .footer-links, .comment-form {
                display: none;
            }
        }
