* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        :root {
            --primary: #2E7D32;
            --secondary: #FF9800;
            --accent: #D32F2F;
            --light: #F5F5F5;
            --dark: #212121;
            --text: #333333;
            --border: #E0E0E0;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--accent);
        }
        .container {
            width: 100%;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #1B5E20);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: var(--secondary);
            font-size: 2.5rem;
        }
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .logo-sub {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 400;
        }
        .nav-desktop {
            display: flex;
            gap: 1.8rem;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-bottom-color: var(--secondary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--primary);
            width: 100%;
            padding: 1rem 0;
            margin-top: 1rem;
            border-radius: 8px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.8rem 1.5rem;
            border-left: 4px solid transparent;
        }
        .nav-mobile a:hover {
            background-color: rgba(255,255,255,0.1);
            border-left-color: var(--secondary);
        }
        .breadcrumb {
            padding: 0.8rem 0;
            font-size: 0.9rem;
            color: #666;
            border-bottom: 1px solid var(--border);
            margin-bottom: 1.5rem;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        main {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 1.5rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-content h1 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-left: 6px solid var(--secondary);
            padding-left: 1rem;
        }
        .article-content h2 {
            color: var(--dark);
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--border);
        }
        .article-content h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content strong {
            color: var(--accent);
            font-weight: 700;
        }
        .article-content em {
            background-color: #FFF9C4;
            font-style: italic;
            padding: 0 3px;
        }
        .highlight-box {
            background: linear-gradient(to right, #E8F5E9, #F1F8E9);
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 1px solid var(--border);
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid var(--secondary);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        .stat-label {
            color: var(--dark);
            margin-top: 0.8rem;
            font-weight: 600;
        }
        .tip-box {
            background-color: #E3F2FD;
            border-radius: 10px;
            padding: 1.8rem;
            margin: 2rem 0;
            border: 1px dashed #2196F3;
        }
        .tip-title {
            color: #0D47A1;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-title {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--border);
        }
        .search-form {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1rem;
            border: 1px solid var(--border);
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: var(--accent);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #FFC107;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            resize: vertical;
            min-height: 120px;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: var(--accent);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.2rem;
            margin: 3rem 0 2rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 8px;
            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 20px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--dark);
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-radius: 12px 12px 0 0;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            opacity: 0.8;
            font-size: 0.95rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            width: 100%;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 1rem;
                width: 100%;
                justify-content: space-between;
            }
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h1 {
                font-size: 2rem;
            }
            .article-content h2 {
                font-size: 1.6rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
