:root {
            --primary-color: #2E7D32;
            --secondary-color: #FF9800;
            --accent-color: #D32F2F;
            --text-dark: #333333;
            --text-light: #555555;
            --bg-light: #f9f9f9;
            --bg-white: #ffffff;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
            font-size: 18px;
            text-align: justify;
            hyphens: auto;
        }
        h1, h2, h3, h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-top: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--secondary-color);
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            padding-left: 1rem;
            border-left: 6px solid var(--secondary-color);
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            color: var(--accent-color);
        }
        p {
            margin-bottom: 1.5rem;
            padding: 0 0.5rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--bg-white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            color: var(--secondary-color);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary-color);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--bg-white);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow);
            padding: 1rem;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.2rem;
            display: block;
            padding: 0.8rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-box {
            margin: 2rem auto;
            max-width: 600px;
            padding: 1rem;
            background-color: var(--bg-white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--primary-color);
        }
        .search-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #1B5E20;
        }
        main {
            background-color: var(--bg-white);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 2rem auto;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            color: var(--text-light);
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }
        .highlight {
            background-color: #FFF8E1;
            border-left: 5px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 600;
            color: var(--text-dark);
        }
        .tip-box {
            background-color: #E8F5E9;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border: 1px dashed var(--primary-color);
        }
        .tip-box h4 {
            color: var(--primary-color);
            margin-top: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .stat-card {
            background-color: var(--bg-light);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
        }
        .quote {
            font-style: italic;
            padding: 2rem;
            margin: 2rem 0;
            background-color: #F5F5F5;
            border-radius: var(--border-radius);
            position: relative;
        }
        .quote:before {
            content: '\201C';
            font-size: 4rem;
            color: var(--secondary-color);
            position: absolute;
            top: -1rem;
            left: 1rem;
        }
        .quote-author {
            text-align: right;
            font-weight: 600;
            color: var(--primary-color);
            margin-top: 1rem;
        }
        .user-interaction {
            margin: 4rem 0;
            padding: 2rem;
            background-color: var(--bg-light);
            border-radius: var(--border-radius);
        }
        .rating-form, .comment-form {
            margin-bottom: 3rem;
        }
        .rating-form h3, .comment-form h3 {
            margin-bottom: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars label:hover ~ label {
            color: #FFD700;
        }
        .stars input:checked ~ label {
            color: #FFD700;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-color);
            outline: none;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: #1B5E20;
            transform: scale(1.05);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background-color: var(--bg-white);
            padding: 1.2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.12);
        }
        .web-link a {
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        footer {
            background-color: #263238;
            color: #fff;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #FF9800;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        .footer-section a {
            color: #B0BEC5;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-section a:hover {
            color: #FF9800;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #37474F;
            color: #B0BEC5;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
        }
        @media (max-width: 768px) {
            body { font-size: 16px; }
            h1 { font-size: 2rem; }
            .container { padding: 0 15px; }
            main { padding: 1.5rem; }
            .stats-grid { grid-template-columns: 1fr; }
            .web-links { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.8rem; }
            .logo a { font-size: 2rem; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: var(--border-radius); margin-bottom: 0.5rem; }
            .search-form button { border-radius: var(--border-radius); padding: 0.8rem; }
        }
