        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
        }
        :root {
            --primary: #2E7D32;
            --primary-dark: #1B5E20;
            --secondary: #FF9800;
            --accent: #E53935;
            --light: #f8f9fa;
            --dark: #212121;
            --gray: #757575;
            --gray-light: #e0e0e0;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f5f5;
            color: var(--dark);
            line-height: 1.7;
            font-size: 1rem;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
        }
        ul, ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .section {
            padding: 3rem 0;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .p-2 { padding: 2rem; }
        h1, h2, h3, h4 {
            color: var(--primary-dark);
            line-height: 1.3;
            margin-bottom: 1.2rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            margin-top: 2.5rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--primary);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--dark);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        strong {
            color: var(--primary-dark);
            font-weight: 700;
        }
        blockquote {
            background: linear-gradient(to right, var(--primary), transparent);
            color: white;
            padding: 1.5rem 2rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.1rem;
            border-left: 5px solid var(--secondary);
        }
        .highlight {
            background-color: #FFF3E0;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo span {
            color: var(--secondary);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .desktop-nav a:hover {
            background-color: var(--primary);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: white;
            padding: 1rem;
            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: 1rem;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-radius: var(--border-radius);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: var(--light);
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 1rem 1.5rem;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--gray-light);
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--dark);
            font-weight: 600;
        }
        main {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            margin: 2rem auto;
            padding: 2rem;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed var(--gray-light);
            margin-bottom: 2rem;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .tag {
            background-color: #E8F5E9;
            color: var(--primary-dark);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .search-box {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            text-align: center;
        }
        .search-box h3 {
            color: white;
            margin-bottom: 1rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #F57C00;
        }
        .interactive-section {
            background-color: #F1F8E9;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            margin-top: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: var(--gray-light);
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #FFC107;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 1px solid var(--gray-light);
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        button[type="submit"] {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        button[type="submit"]:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        .responsive-table {
            overflow-x: auto;
            margin: 2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--gray-light);
        }
        th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        tr:hover {
            background-color: #F5F5F5;
        }
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: var(--transition);
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        .img-caption {
            padding: 1rem;
            background-color: white;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            padding: 2rem 0;
            border-top: 2px solid var(--gray-light);
            border-bottom: 2px solid var(--gray-light);
            margin: 3rem 0;
        }
        .web-link {
            background-color: var(--light);
            padding: 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: #E3F2FD;
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--dark);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-logo span {
            color: var(--secondary);
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #BDBDBD;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #424242;
            color: #9E9E9E;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .container { padding: 0 1rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            .header-container { padding: 1rem; }
            .search-form { flex-direction: column; }
            .search-form input, .search-form button { border-radius: var(--border-radius); width: 100%; }
            .search-form button { margin-top: 0.5rem; padding: 0.9rem; }
            .article-meta { flex-direction: column; align-items: flex-start; }
            .image-gallery { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .section { padding: 2rem 0; }
            main { padding: 1.5rem; }
            .interactive-section { padding: 1.5rem; }
            .footer-content { grid-template-columns: 1fr; }
        }
