:root {
            --primary: #2e7d32;
            --secondary: #558b2f;
            --accent: #ffb300;
            --light: #f1f8e9;
            --dark: #1b5e20;
            --text: #333333;
            --gray: #757575;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background-color: #f9f9f9;
            color: var(--text);
            line-height: 1.7;
        }
        a {
            text-decoration: none;
            color: var(--primary);
            transition: color 0.3s;
        }
        a:hover {
            color: var(--accent);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: var(--accent);
        }
        .search-box form {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            padding: 5px;
        }
        .search-box input {
            border: none;
            padding: 10px 20px;
            width: 250px;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--accent);
            border: none;
            color: white;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 50px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            margin-top: 1rem;
            padding: 10px;
        }
        nav li {
            margin: 0 15px;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav a:hover {
            background: rgba(255,255,255,0.2);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffcc80;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            padding: 30px 0;
        }
        article {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            color: var(--dark);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h2 {
            color: var(--primary);
            margin: 2rem 0 1rem;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--light);
        }
        h3 {
            color: var(--secondary);
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: var(--light);
            border-left: 5px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .tip {
            background: #e3f2fd;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            display: flex;
            align-items: flex-start;
        }
        .tip i {
            color: #2196f3;
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 5px;
        }
        .image-wrapper {
            margin: 30px 0;
            text-align: center;
        }
        .image-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.9rem;
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 30px;
        }
        .rating-widget h3, .comment-widget h3 {
            margin-top: 0;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffd700;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin-right: 5px;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-widget textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            margin-bottom: 15px;
            font-size: 1rem;
            resize: vertical;
        }
        .comment-widget button, .rating-widget button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: background 0.3s;
        }
        .comment-widget button:hover, .rating-widget button:hover {
            background: var(--dark);
        }
        .web-links {
            background: var(--light);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0 30px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 40px 0 20px;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .search-box input {
                width: 200px;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            .logo {
                order: 2;
                flex-grow: 1;
                text-align: center;
            }
            .search-box {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            .search-box form {
                width: 100%;
            }
            .search-box input {
                width: 100%;
            }
            nav ul {
                flex-direction: column;
                display: none;
                margin-top: 15px;
            }
            nav.active ul {
                display: flex;
            }
            nav li {
                margin: 5px 0;
                text-align: center;
            }
            h1 {
                font-size: 2rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
