        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            font-size: 1.05rem;
        }
        .hindi-text {
            font-family: 'Noto Sans Devanagari', 'Segoe UI', sans-serif;
            text-align: justify;
            word-spacing: 0.1em;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffd600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .logo i {
            font-size: 2.2rem;
        }
        .search-form {
            display: flex;
            max-width: 400px;
            flex-grow: 1;
            margin: 0 20px;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 18px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
            background: rgba(255, 255, 255, 0.95);
        }
        .search-btn {
            background: #ff6f00;
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 25px;
            cursor: pointer;
            transition: background 0.3s ease;
            font-weight: 600;
        }
        .search-btn:hover {
            background: #ff8f00;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        nav {
            margin-top: 1rem;
            transition: all 0.4s ease;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .nav-links a i {
            font-size: 1.2rem;
        }
        .breadcrumb {
            background: #e8eaf6;
            padding: 12px 0;
            margin-bottom: 2rem;
            border-radius: 0 0 10px 10px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: #1a237e;
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #666;
            font-size: 0.9rem;
        }
        main {
            padding: 2rem 0;
            min-height: 80vh;
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
        }
        h1 {
            color: #1a237e;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            text-align: center;
        }
        h2 {
            color: #283593;
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffd600;
        }
        h3 {
            color: #3949ab;
            font-size: 1.5rem;
            margin: 2rem 0 1rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.2rem;
            background: #f5f5f5;
            padding: 1.5rem;
            border-left: 5px solid #ff6f00;
            border-radius: 0 10px 10px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffecb3 0%, #ffecb3 100%);
            padding: 1.8rem;
            border-radius: 12px;
            margin: 2rem 0;
            border: 2px dashed #ff9800;
        }
        .tip-box {
            background: #e3f2fd;
            border-left: 5px solid #2196f3;
            padding: 1.5rem;
            margin: 1.8rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.4s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }
        .interactive-section {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px solid #e0e0e0;
        }
        .interactive-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 1.5rem;
        }
        .interactive-title i {
            color: #ff6f00;
            font-size: 1.8rem;
        }
        .rating-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 2rem 0;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            direction: rtl;
        }
        .rating-star {
            font-size: 2.2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s, transform 0.2s;
        }
        .rating-star:hover,
        .rating-star:hover ~ .rating-star {
            color: #ff9800;
        }
        .rating-star.selected {
            color: #ff9800;
            transform: scale(1.1);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s ease;
        }
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #3949ab;
            box-shadow: 0 0 0 3px rgba(57, 73, 171, 0.2);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #1a237e, #283593);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 1.1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #283593, #3949ab);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 5px solid #1a237e;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-left-color: #ff6f00;
        }
        .web-link a {
            color: #1a237e;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:hover {
            color: #ff6f00;
            text-decoration: underline;
        }
        footer {
            background: #1a237e;
            color: white;
            padding: 3rem 0 1.5rem 0;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffd600;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: #ffd600;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #e8eaf6;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a:hover {
            color: #ffd600;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
            color: #c5cae9;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .nav-links {
                gap: 1rem;
            }
            .header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .search-form {
                width: 100%;
                margin: 1rem 0 0 0;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            nav {
                max-height: 0;
                overflow: hidden;
                width: 100%;
            }
            nav.active {
                max-height: 500px;
            }
            .nav-links {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                padding: 15px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            article {
                padding: 1.5rem;
            }
            .intro {
                padding: 1.2rem;
            }
            .rating-star {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 15px;
            }
            .article-img {
                margin: 1.5rem auto;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        html {
            scroll-behavior: smooth;
        }
        @media print {
            header, footer, .interactive-section, .breadcrumb {
                display: none;
            }
            body {
                background: white;
                color: black;
                font-size: 12pt;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
        }
