* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #4CAF50;
            --secondary: #FF9800;
            --accent: #9C27B0;
            --dark: #2E7D32;
            --light: #E8F5E9;
            --text: #333333;
            --text-light: #666666;
            --white: #FFFFFF;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: var(--text);
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--accent);
        }
        .logo:hover {
            transform: scale(1.02);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .nav-links a:hover {
            background: var(--light);
            color: var(--primary);
        }
        .nav-links a i {
            margin-right: 8px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            background: var(--light);
            padding: 12px 0;
            margin-bottom: 30px;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: var(--text-light);
        }
        main {
            padding: 40px 0;
        }
        article {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 40px;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 3px solid var(--light);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .publish-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-light);
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .publish-info span i {
            margin-right: 8px;
            color: var(--primary);
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 30px 0;
            border: 5px solid var(--light);
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--light);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #a1ffce 0%, #faffd1 100%);
            padding: 25px;
            border-left: 5px solid var(--primary);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 25px 0;
        }
        .tip-box {
            background: var(--light);
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 25px 0;
            position: relative;
            border: 1px solid var(--primary);
        }
        .tip-box::before {
            content: "💡";
            position: absolute;
            top: -15px;
            left: -15px;
            font-size: 2rem;
            background: var(--white);
            border-radius: 50%;
            padding: 5px;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
        }
        strong {
            color: var(--dark);
            font-weight: 700;
        }
        em {
            color: var(--accent);
            font-style: italic;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: var(--dark);
            text-align: center;
            padding: 30px;
            margin: 35px 0;
            background: linear-gradient(45deg, var(--light) 0%, var(--white) 100%);
            border-radius: var(--border-radius);
            border-left: 8px solid var(--secondary);
            border-right: 8px solid var(--secondary);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: var(--light);
            padding: 25px;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .interactive-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
            margin: 50px 0;
            text-align: center;
        }
        .interactive-section h2 {
            color: var(--white);
            border-bottom: 2px solid rgba(255,255,255,0.3);
        }
        .form-group {
            max-width: 600px;
            margin: 30px auto;
            text-align: left;
        }
        label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
            background: rgba(255,255,255,0.1);
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--white);
            background: rgba(255,255,255,0.2);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            background: var(--secondary);
            color: var(--white);
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn:hover {
            background: var(--primary);
            transform: scale(1.05);
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            direction: ltr;
        }
        .star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #FFD700;
            transform: scale(1.2);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
        }
        .web-link {
            background: var(--white);
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .web-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            width: 100%;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .nav-links { gap: 15px; }
        }
        @media (max-width: 768px) {
            .header-container { padding: 12px 0; }
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
                display: none;
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger { display: block; }
            .publish-info { flex-direction: column; gap: 10px; }
            article { padding: 25px; }
            .stats-grid { grid-template-columns: 1fr; }
            .interactive-section { padding: 25px; }
        }
        @media (max-width: 480px) {
            .logo { font-size: 1.8rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .footer-links { grid-template-columns: 1fr; }
            .btn { width: 100%; }
        }
        @media print {
            .interactive-section, .hamburger, .breadcrumb, footer { display: none; }
            body { background: none; }
            article { box-shadow: none; }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article {
            animation: fadeIn 0.8s ease-out;
        }
