        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: #2c3e50;
            background-color: #f8f9fa;
            text-align: justify;
            hyphens: auto;
            word-wrap: break-word;
        }
        .header {
            background: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%);
            color: white;
            padding: 1rem 5%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            color: white;
            text-decoration: none;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        .logo-icon {
            color: #f4d03f;
            font-size: 2rem;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-desktop 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;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            background-color: #154360;
            margin-top: 1rem;
            border-radius: 8px;
            overflow: hidden;
            animation: slideDown 0.4s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .nav-mobile ul {
            list-style: none;
            padding: 1rem 0;
        }
        .nav-mobile li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-mobile a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 0.9rem 1.5rem;
            transition: background 0.3s;
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            padding: 1rem 5%;
            background-color: #e8f4fc;
            font-size: 0.9rem;
            color: #5d6d7e;
        }
        .breadcrumb a {
            color: #2e86c1;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-container {
            max-width: 800px;
            margin: 2rem auto;
            padding: 0 5%;
        }
        .search-box {
            display: flex;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            background-color: white;
        }
        .search-button {
            background: linear-gradient(to right, #28b463, #239b56);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to right, #239b56, #1d8348);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 2.5rem;
            color: #1a5276;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            text-align: center;
        }
        h2 {
            font-size: 1.8rem;
            color: #2e86c1;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #f4d03f;
        }
        h3 {
            font-size: 1.4rem;
            color: #28b463;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #5d6d7e;
            font-weight: 500;
            text-align: center;
            margin-bottom: 2.5rem;
            padding: 1rem;
            background-color: #f0f8ff;
            border-left: 5px solid #2e86c1;
            border-radius: 0 8px 8px 0;
        }
        .highlight {
            background-color: #fffde7;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #f4d03f;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #e3f2fd, #bbdefb);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-8px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a5276;
            display: block;
        }
        .image-container {
            text-align: center;
            margin: 3rem 0;
        }
        .featured-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s;
        }
        .featured-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .user-interaction {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            border: 1px solid #eaeaea;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            direction: ltr;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #f4d03f;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: #2e86c1;
            outline: none;
            box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.2);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            align-self: flex-start;
            background: linear-gradient(to right, #2e86c1, #1a5276);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #1a5276, #154360);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(26, 82, 118, 0.2);
        }
        .footer-links {
            background-color: #2c3e50;
            padding: 3rem 5%;
            margin-top: 4rem;
        }
        .web-link {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.05);
            margin: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .web-link a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 500;
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer {
            background-color: #1c2833;
            color: #bdc3c7;
            text-align: center;
            padding: 2rem 5%;
            font-size: 0.95rem;
        }
        .footer a {
            color: #2e86c1;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.6rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .nav-desktop { display: none; }
            .hamburger { display: block; position: absolute; right: 5%; top: 1.2rem; }
            .logo { margin-bottom: 0.5rem; }
            h1 { font-size: 1.9rem; }
            h2 { font-size: 1.5rem; }
            article { padding: 1.5rem; }
            .search-button { padding: 1rem 1.5rem; }
            .stats-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .breadcrumb { font-size: 0.8rem; }
            .lead { font-size: 1.1rem; }
            .web-link { display: block; margin: 0.5rem 0; }
            .links-container { flex-direction: column; }
        }
        @media print {
            .header, .search-container, .user-interaction, .footer-links, .footer { display: none; }
            body { color: black; background: white; }
            article { box-shadow: none; padding: 0; }
        }
