* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
        }
        :root {
            --primary: #5b8c5a;
            --secondary: #e9d8a6;
            --accent: #ca6702;
            --dark: #2d3e2c;
            --light: #f8f5f0;
            --text: #333;
            --shadow: rgba(45, 62, 44, 0.1);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .header {
            background-color: var(--dark);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px var(--shadow);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            font-family: 'Courier New', monospace;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #5b8c5a, #e9d8a6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s;
            display: block;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        .desktop-nav a:hover {
            background-color: var(--primary);
            color: var(--secondary);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: all 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 80%;
            left: 10%;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 20px var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background-color: var(--primary);
        }
        .breadcrumb {
            background-color: #e9f0e9;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #ccc;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px var(--shadow);
        }
        h1 {
            color: var(--dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--secondary);
        }
        h3 {
            color: var(--accent);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            background-color: #f0f7f0;
            padding: 1.5rem;
            border-left: 5px solid var(--primary);
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fff9e6;
            border: 1px solid #ffe066;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .feature-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.02);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        .sidebar {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px var(--shadow);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            color: var(--dark);
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary);
        }
        .search-box {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem;
            border: 2px solid var(--primary);
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: var(--dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: #ffc107;
        }
        .star {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star:hover {
            transform: scale(1.3);
        }
        .rating-form button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background-color: #a95502;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 1rem;
        }
        .comment-form button {
            background-color: var(--dark);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background-color: #1e2a1d;
        }
        .footer-links {
            background-color: var(--dark);
            padding: 3rem 2rem;
            margin-top: 4rem;
        }
        .web-links-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer {
            background-color: #1e2a1d;
            color: #aaa;
            text-align: center;
            padding: 2rem;
        }
        .footer p {
            margin-bottom: 0.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .container {
                padding: 0 1rem;
            }
            .main-content {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .lead {
                font-size: 1.1rem;
                padding: 1rem;
            }
            .sidebar {
                position: static;
            }
        }
