:root {
            --primary-green: #2e7d32;
            --secondary-green: #4caf50;
            --accent-yellow: #ffd600;
            --accent-brown: #8d6e63;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f9f9f9;
            --bg-white: #ffffff;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
            direction: ltr;
            text-align: left;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--bg-white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-green);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            color: var(--accent-yellow);
        }
        .logo a span {
            color: var(--accent-brown);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            background-color: var(--primary-green);
            color: white;
        }
        .mobile-menu-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary-green);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: var(--bg-white);
            padding: 20px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            padding: 10px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: var(--primary-green);
            color: white;
        }
        .breadcrumb {
            padding: 12px 0;
            background-color: #f0f0f0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-green);
            text-decoration: none;
        }
        .breadcrumb span {
            color: var(--text-light);
            margin: 0 8px;
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            padding: 40px 0;
            text-align: center;
            color: white;
            margin: 20px 0;
            border-radius: var(--border-radius);
        }
        .search-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 16px 20px;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1.1rem;
        }
        .search-box button {
            background-color: var(--accent-yellow);
            color: var(--text-dark);
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #ffc400;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--bg-white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 30px;
            border-bottom: 2px solid var(--primary-green);
            padding-bottom: 20px;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--primary-green);
            line-height: 1.3;
            margin-bottom: 15px;
        }
        .meta-info {
            display: flex;
            gap: 20px;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .meta-info span i {
            margin-right: 5px;
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h2 {
            font-size: 1.8rem;
            color: var(--primary-green);
            margin: 30px 0 15px 0;
            padding-bottom: 8px;
            border-bottom: 1px dashed #ccc;
        }
        .article-body h3 {
            font-size: 1.5rem;
            color: var(--accent-brown);
            margin: 25px 0 12px 0;
        }
        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-body strong {
            color: var(--primary-green);
            font-weight: 700;
        }
        .article-body em {
            color: var(--accent-brown);
        }
        .highlight-box {
            background-color: #e8f5e9;
            border-left: 5px solid var(--primary-green);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 25px 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: -15px;
            margin-bottom: 25px;
        }
        .tip {
            background-color: #fffde7;
            padding: 15px;
            border-radius: var(--border-radius);
            margin: 20px 0;
            border: 1px solid #ffeb3b;
        }
        .tip h4 {
            color: #f57c00;
            margin-bottom: 8px;
        }
        .sidebar {
            background-color: var(--bg-white);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            height: fit-content;
        }
        .sidebar h3 {
            color: var(--primary-green);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-yellow);
        }
        .rating-widget, .comment-widget {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }
        .stars i {
            color: #ddd;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: #ffc107;
        }
        .rating-form input, .rating-form textarea, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
        }
        .rating-form button, .comment-form button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: var(--transition);
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: #1b5e20;
        }
        .internal-links {
            background-color: var(--bg-white);
            padding: 40px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        .internal-links h2 {
            color: var(--primary-green);
            margin-bottom: 25px;
            text-align: center;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #f5f5f5;
            padding: 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: #e8f5e9;
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background-color: #2c2c2c;
            color: #ddd;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
        }
        .footer-logo span {
            color: var(--accent-yellow);
        }
        .footer-nav h4, .footer-contact h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-nav ul {
            list-style: none;
        }
        .footer-nav li {
            margin-bottom: 10px;
        }
        .footer-nav a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-nav a:hover {
            color: var(--accent-yellow);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .divider {
            height: 1px;
            background-color: #eee;
            margin: 30px 0;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-content, .sidebar {
                padding: 25px;
            }
            .search-section h2 {
                font-size: 1.6rem;
            }
        }
