        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a237e;
            --secondary: #ff9800;
            --accent: #4caf50;
            --light: #f5f5f5;
            --dark: #212121;
            --text: #333333;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
            line-height: 1.8;
            color: var(--text);
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
        }
        h1, h2, h3, h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin: 2rem 0;
            position: relative;
            padding-bottom: 1rem;
        }
        h1:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo span {
            color: var(--secondary);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-link {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-link:hover {
            background: var(--primary);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            background: white;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .search-section {
            background: var(--light);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--primary);
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--secondary);
        }
        .content-section {
            margin: 3rem 0;
            padding: 2rem;
            background: var(--light);
            border-radius: 10px;
            border-left: 5px solid var(--primary);
        }
        .highlight {
            background: linear-gradient(120deg, #ffecb3 0%, #ffecb3 100%);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 2px dashed var(--secondary);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            display: block;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .interactive-section {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 3rem;
            border-radius: 12px;
            margin: 3rem 0;
        }
        .rating-system {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--primary);
            border-radius: 8px;
            font-size: 1rem;
            margin: 1rem 0;
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            margin: 0 auto;
        }
        .submit-btn:hover {
            background: #388e3c;
            transform: translateY(-2px);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: var(--light);
            border-radius: 10px;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 6px;
            border-left: 4px solid var(--primary);
        }
        .web-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: block;
            padding: 0.5rem;
            transition: var(--transition);
        }
        .web-link a:hover {
            background: #e8eaf6;
            padding-left: 1rem;
        }
        .footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem 1rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .copyright {
            text-align: center;
            padding: 2rem 0 0;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #bdbdbd;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .container {
                padding: 1rem;
            }
            .header-container {
                padding: 1rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            .header, .footer, .search-section, .interactive-section {
                display: none;
            }
            body {
                background: white;
            }
            .container {
                box-shadow: none;
                padding: 0;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        :focus {
            outline: 3px solid var(--secondary);
            outline-offset: 2px;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-section {
            animation: fadeIn 0.6s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        .tip-box {
            background: #e8f5e9;
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .warning {
            background: #fff3e0;
            border-left: 5px solid #ff9800;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: var(--gray);
            border-left: 4px solid var(--primary);
            padding-left: 2rem;
            margin: 2rem 0;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: var(--dark);
        }
