        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a365d;
            --secondary-color: #d4af37;
            --accent-color: #c53030;
            --text-color: #2d3748;
            --light-bg: #f7fafc;
            --dark-bg: #2d3748;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fff;
            font-size: 18px;
            direction: ltr;
            text-align: left;
        }
        .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) 0%, #2d3748 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--secondary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: white;
        }
        .logo:hover {
            color: white;
        }
        .logo:hover span {
            color: var(--secondary-color);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 1rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #718096;
        }
        .search-section {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--border-color);
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary-color);
        }
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-btn:hover {
            background-color: #2d3748;
            transform: scale(1.05);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: 10px;
            padding: 3rem;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        h1, h2, h3, h4 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            color: #4a5568;
        }
        h4 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: #718096;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-color);
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-left: 5px solid var(--secondary-color);
            border-radius: 5px;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        strong {
            color: var(--primary-color);
        }
        em {
            color: var(--accent-color);
            font-style: italic;
        }
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2.5rem auto;
            display: block;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
        }
        .article-img:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #718096;
            margin-top: 0.5rem;
            margin-bottom: 2rem;
            font-size: 1rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: 8px;
            overflow: hidden;
        }
        th {
            background-color: var(--primary-color);
            color: white;
            padding: 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid var(--border-color);
        }
        tr:nth-child(even) {
            background-color: var(--light-bg);
        }
        tr:hover {
            background-color: rgba(212, 175, 55, 0.1);
        }
        blockquote {
            border-left: 5px solid var(--secondary-color);
            padding: 1.5rem 2rem;
            margin: 2.5rem 0;
            background-color: var(--light-bg);
            border-radius: 0 8px 8px 0;
            font-style: italic;
            font-size: 1.3rem;
            color: var(--primary-color);
        }
        blockquote p {
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        .user-interaction {
            background-color: var(--light-bg);
            padding: 3rem;
            border-radius: 10px;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .interaction-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }
        .rating-section {
            margin-bottom: 3rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 1.5rem 0;
        }
        .star {
            font-size: 2.5rem;
            color: #e2e8f0;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #f6ad55;
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 800px;
        }
        textarea, input[type="text"], input[type="email"] {
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1.1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        textarea:focus, input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.2);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-row {
            display: flex;
            gap: 1.5rem;
        }
        .form-row .form-group {
            flex: 1;
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .submit-btn:hover {
            background-color: #2d3748;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 4px solid var(--secondary-color);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        .web-link p {
            margin-top: 0.5rem;
            font-size: 1rem;
            color: #718096;
            margin-bottom: 0;
        }
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--secondary-color);
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
            font-size: 1rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; gap: 1rem; }
            nav ul { display: none; flex-direction: column; width: 100%; }
            nav.active ul { display: flex; }
            .hamburger { display: block; }
            .form-row { flex-direction: column; }
            .article-img { margin: 1.5rem auto; }
        }
        @media (max-width: 576px) {
            body { font-size: 16px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            article, .user-interaction { padding: 1.5rem; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn { border-radius: 8px; width: 100%; }
            .search-btn { justify-content: center; margin-top: 0.5rem; }
        }
        @media print {
            header, nav, .search-section, .user-interaction, .web-links, footer { display: none; }
            body { font-size: 12pt; color: #000; }
            article { box-shadow: none; padding: 0; }
            a { color: #000; text-decoration: underline; }
        }
