* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary-green: #2ecc71;
            --secondary-green: #27ae60;
            --accent-yellow: #f1c40f;
            --dark-brown: #8b4513;
            --light-brown: #d2691e;
            --text-dark: #2c3e50;
            --text-light: #ecf0f1;
            --bg-light: #f9f9f9;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            font-size: 18px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 1rem 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-yellow);
        }
        .logo span {
            background: white;
            color: var(--primary-green);
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 1.2rem;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .nav-links {
            display: flex;
            gap: 1.8rem;
            list-style: none;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: var(--transition);
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            padding: 5px 15px;
        }
        .search-box input {
            border: none;
            padding: 10px;
            width: 250px;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--accent-yellow);
            border: none;
            color: var(--text-dark);
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 50px;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #e0b90f;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background: #e8f5e9;
            padding: 1rem 2rem;
            font-size: 0.95rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: var(--secondary-green);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        main {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        article {
            margin-bottom: 3rem;
        }
        h1 {
            color: var(--secondary-green);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--accent-yellow);
            padding-left: 1rem;
        }
        h2 {
            color: var(--dark-brown);
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--primary-green);
        }
        h3 {
            color: var(--light-brown);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #e0f7fa 0%, #b2ebf2 100%);
            padding: 2rem;
            border-radius: 10px;
            border-left: 5px solid #00bcd4;
            margin: 2rem 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border-top: 4px solid var(--primary-green);
        }
        .stat-card h4 {
            color: var(--secondary-green);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        .feature-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .quote {
            font-style: italic;
            background: #fff9e6;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid var(--accent-yellow);
            font-size: 1.2rem;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: var(--dark-brown);
            margin-top: 1rem;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: var(--secondary-green);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: var(--accent-yellow);
            margin: 1rem 0;
        }
        .rating-btn {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: var(--transition);
            margin-top: 1rem;
        }
        .rating-btn:hover {
            background: var(--secondary-green);
            transform: scale(1.05);
        }
        .comment-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #eee;
        }
        .comment-form {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .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: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-green);
            outline: none;
        }
        .submit-btn {
            background: var(--dark-brown);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: #a0522d;
            transform: translateY(-3px);
        }
        .footer-links {
            background: #2c3e50;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }
        .links-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .web-link {
            background: #34495e;
            padding: 1.5rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: #3d566e;
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            line-height: 1.6;
        }
        .web-link a:hover {
            color: var(--accent-yellow);
        }
        footer {
            background: #1a252f;
            color: var(--text-light);
            text-align: center;
            padding: 2rem;
        }
        .copyright {
            max-width: 1200px;
            margin: 0 auto;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--secondary-green);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            .nav-links.active {
                display: flex;
            }
            .search-box input {
                width: 200px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            main, aside {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .search-box {
                width: 100%;
                margin-top: 1rem;
                order: 3;
            }
            .search-box input {
                width: 100%;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .logo {
                font-size: 1.8rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .bold {
            font-weight: 800;
            color: var(--dark-brown);
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
