        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a73e8;
            --secondary-color: #34a853;
            --accent-color: #ff6d00;
            --text-primary: #202124;
            --text-secondary: #5f6368;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #dadce0;
            --shadow: 0 2px 10px 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-primary);
            background-color: var(--bg-light);
            font-size: 18px;
        }
        .hindi-font {
            font-family: 'Noto Sans Devanagari', 'Segoe UI', sans-serif;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color), #0d47a1);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
        }
        .logo:hover {
            color: #ffd54f;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        nav a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .search-container {
            max-width: 600px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        .search-form {
            display: flex;
            gap: 0;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-button:hover {
            background: #0d47a1;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: var(--bg-white);
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--text-secondary);
        }
        main {
            padding: 2rem 0;
        }
        .article-container {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 3rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.3;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--secondary-color);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--text-primary);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-secondary);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--primary-color);
            font-weight: 500;
            text-align: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            border-radius: 8px;
            border-left: 5px solid var(--accent-color);
        }
        .highlight {
            background: linear-gradient(120deg, #ffecb3 0%, #ffecb3 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        .feature-box {
            background: linear-gradient(135deg, #e8f5e9, #e3f2fd);
            border-left: 5px solid var(--secondary-color);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .feature-box h3 {
            color: var(--secondary-color);
            margin-top: 0;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }
        .interactive-section {
            background: linear-gradient(135deg, #f5f5f5, #e0f7fa);
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
            border: 2px solid var(--border-color);
        }
        .rating-system {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2.5rem;
            color: #ffd700;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .star:hover,
        .star.active {
            transform: scale(1.2);
            text-shadow: 0 0 10px rgba(255,215,0,0.5);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-primary);
        }
        .form-input {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(26,115,232,0.2);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            display: block;
            margin: 2rem auto;
        }
        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            background: linear-gradient(135deg, #0d47a1, #2e7d32);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: var(--bg-white);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
            transition: var(--transition);
            text-decoration: none;
            color: var(--text-primary);
            display: block;
        }
        .web-link:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow);
            border-left-color: var(--primary-color);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: linear-gradient(135deg, #1a237e, #0d47a1);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h3 {
            color: #ffd54f;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: #ffd54f;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #b0bec5;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .article-container {
                padding: 2rem;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary-color);
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-container {
                padding: 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        @media (max-width: 480px) {
            body {
                font-size: 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 8px;
            }
            .search-input,
            .search-button {
                width: 100%;
                border-radius: 8px;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            .stars {
                font-size: 2rem;
            }
        }
        @media print {
            header, footer, .search-container, .interactive-section {
                display: none;
            }
            body {
                font-size: 12pt;
                color: black;
                background: white;
            }
            .article-container {
                box-shadow: none;
                padding: 0;
            }
            h1, h2, h3 {
                color: black;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
