* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2c8c3f;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1e5c2a;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e5c2a 0%, #2c8c3f 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo a {
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            font-size: 2.5rem;
            color: #ffd700;
        }
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .logo-sub {
            font-size: 0.8rem;
            font-weight: 400;
            letter-spacing: normal;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        nav {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
        }
        .nav-links a:hover, .nav-links a.active {
            border-bottom-color: #ffd700;
        }
        .search-box {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            background: white;
            padding: 5px;
            min-width: 250px;
        }
        .search-box input {
            flex-grow: 1;
            border: none;
            padding: 10px 15px;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background: #ffd700;
            color: #1e5c2a;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: #ffed4e;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9f5eb;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 0.5rem;
            color: #666;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 3px solid #2c8c3f;
            padding-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1e5c2a;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .rating-widget {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 1rem;
        }
        .stars {
            display: flex;
            gap: 2px;
        }
        .star {
            color: #ddd;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover, .star.active {
            color: #ffd700;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        h2, h3, h4 {
            color: #2c8c3f;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #ffd700;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background-color: #f0f9ff;
            border-left: 4px solid #2c8c3f;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box {
            background: #fff8e1;
            border: 1px dashed #ffb300;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .tip-title {
            color: #ff8f00;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 0.5rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #e9f5eb, #ffffff);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #2c8c3f;
            line-height: 1;
        }
        .stat-label {
            color: #666;
            margin-top: 0.5rem;
        }
        blockquote {
            font-style: italic;
            color: #555;
            border-left: 4px solid #ffd700;
            padding-left: 1.5rem;
            margin: 2rem 0;
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 15px;
            padding: 1.8rem;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
        }
        .widget-title {
            font-size: 1.5rem;
            color: #1e5c2a;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .user-interaction {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .interaction-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .interaction-form textarea, .interaction-form input {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
            width: 100%;
        }
        .interaction-form button {
            background: linear-gradient(to right, #2c8c3f, #1e5c2a);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .interaction-form button:hover {
            opacity: 0.9;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #eee;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #333;
            transition: color 0.3s, padding-left 0.3s;
        }
        .related-links a:hover {
            color: #2c8c3f;
            padding-left: 5px;
        }
        .footer-links-section {
            background: #1e5c2a;
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.2rem;
            border-radius: 8px;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #ffd700;
            font-weight: 600;
        }
        footer {
            background: #0f3519;
            color: #ccc;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #ccc;
            transition: color 0.3s ease;
        }
        .social-links a:hover {
            color: #ffd700;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .nav-toggle {
                display: block;
                position: absolute;
                top: 1.2rem;
                right: 20px;
            }
            nav {
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                display: none;
                margin-top: 1rem;
            }
            nav.active {
                display: flex;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .search-box {
                width: 100%;
                margin-top: 1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-links-section .container {
                padding: 0 15px;
            }
        }
