        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #2c5530;
            --secondary: #8b4513;
            --accent: #d4a017;
            --light: #f8f5e9;
            --dark: #1a1a1a;
            --gray: #6c757d;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --max-width: 1200px;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Arial, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: var(--light);
            padding-top: 80px;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        .logo span {
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: var(--radius);
        }
        .desktop-nav a:hover {
            background-color: rgba(44, 85, 48, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: var(--shadow);
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .mobile-nav a {
            display: block;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f0f7f0;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--gray);
        }
        main {
            padding: 40px 0;
            background-color: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--accent);
        }
        h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--radius);
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .content-section {
            margin-bottom: 40px;
            padding: 0 30px;
        }
        @media (max-width: 768px) {
            .content-section {
                padding: 0 15px;
            }
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(212, 160, 23, 0.1);
            padding: 25px;
            border-left: 4px solid var(--accent);
            margin: 25px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .tip-box {
            background-color: #e8f4fd;
            padding: 20px;
            border-radius: var(--radius);
            margin: 25px 0;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
        .tip-box i {
            color: #1e88e5;
            font-size: 1.5rem;
            margin-top: 5px;
        }
        .interactive-section {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: var(--radius);
            margin: 40px 0;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 30px;
        }
        h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        form {
            display: grid;
            gap: 15px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
        }
        button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        button:hover {
            background-color: #1e3a23;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .rating-stars i {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #ffc107;
        }
        .comments-container {
            margin-top: 40px;
        }
        .comment {
            background-color: white;
            padding: 20px;
            border-radius: var(--radius);
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background-color: white;
            padding: 15px;
            border-radius: var(--radius);
            border: 1px solid #eee;
            transition: var(--transition);
        }
        .web-link:hover {
            border-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h5 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 20px; }
        .mb-30 { margin-bottom: 30px; }
        .emoji { font-size: 1.2em; }
        .bold { font-weight: 700; color: var(--primary); }
        .note { background: #fff8e1; padding: 10px 15px; border-radius: var(--radius); margin: 15px 0; }
