* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #2E7D32;
            --secondary: #FF9800;
            --accent: #1A237E;
            --light: #f8f9fa;
            --dark: #212121;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.7;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #1B5E20);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            width: 300px;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 12px 20px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--secondary);
            border: none;
            color: white;
            padding: 0 25px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #e68900;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            background: rgba(0,0,0,0.1);
            border-radius: 8px;
            padding: 10px;
            margin-top: 10px;
        }
        nav li {
            margin: 0 15px;
        }
        nav a {
            padding: 10px 15px;
            border-radius: 5px;
            transition: var(--transition);
            font-weight: 600;
        }
        nav a:hover, nav a.active {
            background: var(--secondary);
            color: white;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #ddd;
        }
        .breadcrumb a {
            color: #FFEB3B;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 30px 0;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 20px auto;
        }
        .article-header {
            text-align: center;
            padding: 30px 20px;
            border-bottom: 3px dashed var(--primary);
            margin-bottom: 40px;
        }
        h1 {
            color: var(--accent);
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .meta {
            color: var(--gray);
            font-size: 1rem;
            margin-top: 15px;
        }
        .content-section {
            padding: 0 30px 40px;
        }
        h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        h3 {
            color: var(--accent);
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: #FFF9C4;
            padding: 25px;
            border-left: 5px solid var(--secondary);
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: var(--light);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .interaction {
            background: #E8F5E9;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .rating, .comment-form {
            margin: 25px 0;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: #FFD700;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            margin: 10px 0;
            font-size: 1rem;
            resize: vertical;
        }
        button.submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        button.submit-btn:hover {
            background: #1B5E20;
            transform: scale(1.05);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            padding: 40px 20px;
            background: #263238;
            color: white;
        }
        .web-link {
            background: #37474F;
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--secondary);
            transform: translateX(5px);
        }
        .web-link a {
            color: #BB86FC;
            font-weight: 600;
        }
        .web-link:hover a {
            color: white;
        }
        footer {
            background: #1A237E;
            color: white;
            text-align: center;
            padding: 30px 20px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #C5CAE9;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .copyright {
            font-size: 0.9rem;
            color: #9FA8DA;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #3949AB;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            .search-box { width: 250px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--primary);
                padding: 20px;
                border-radius: 0;
            }
            nav ul.active { display: flex; }
            nav li { margin: 10px 0; }
            .header-top { flex-wrap: wrap; }
            .search-box { order: 3; width: 100%; margin-top: 15px; }
            .content-section { padding: 0 20px; }
            .stats-box { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.9rem; }
            .logo { font-size: 1.8rem; }
            .web-links { grid-template-columns: 1fr; }
        }
