* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
            padding-top: 80px;
        }
        a {
            text-decoration: none;
            color: #1a5fb4;
            transition: color 0.3s;
        }
        a:hover {
            color: #e46c0a;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd166;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #e46c0a;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        .desktop-nav li {
            margin-left: 30px;
        }
        .desktop-nav a {
            color: #e2e8f0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            border-bottom-color: #ffd166;
            color: #ffd166;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd166;
        }
        .mobile-nav {
            display: none;
            background-color: #2d3748;
            padding: 20px;
            flex-direction: column;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #e2e8f0;
            padding: 12px 0;
            border-bottom: 1px solid #4a5568;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            color: #ffd166;
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 15px 20px;
            margin-bottom: 30px;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #718096;
        }
        .breadcrumb a {
            color: #4a5568;
        }
        .breadcrumb a:hover {
            color: #1a5fb4;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .article-header {
            margin-bottom: 30px;
            border-bottom: 3px solid #ffd166;
            padding-bottom: 20px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a365d;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .meta {
            display: flex;
            color: #718096;
            font-size: 0.95rem;
            gap: 20px;
        }
        .article-body h2 {
            font-size: 2rem;
            color: #2d3748;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #cbd5e0;
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: #4a5568;
            margin: 30px 0 15px;
        }
        .article-body p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9db;
            padding: 25px;
            border-left: 5px solid #e46c0a;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 600;
            color: #744210;
        }
        .article-image {
            margin: 30px 0;
            text-align: center;
        }
        .article-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }
        .article-image img:hover {
            transform: scale(1.02);
        }
        .article-image figcaption {
            margin-top: 10px;
            font-style: italic;
            color: #718096;
            font-size: 0.95rem;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #1a365d;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd166;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #cbd5e0;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #1a5fb4;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #0d4a9e;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form label, .comment-form label {
            font-weight: 600;
            color: #4a5568;
        }
        .stars {
            display: flex;
            gap: 5px;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: #cbd5e0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffc107;
        }
        .form-input {
            padding: 12px 15px;
            border: 1px solid #cbd5e0;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
        }
        .form-submit {
            background-color: #38a169;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .form-submit:hover {
            background-color: #2f855a;
        }
        .internal-links {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .internal-links h2 {
            font-size: 2rem;
            color: #1a365d;
            margin-bottom: 25px;
            text-align: center;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #1a5fb4;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }
        .web-link a {
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 8px;
            color: #2d3748;
        }
        .web-link p {
            color: #718096;
            font-size: 0.95rem;
            margin: 0;
        }
        footer {
            background-color: #1a365d;
            color: #e2e8f0;
            padding-top: 50px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            padding-bottom: 40px;
        }
        .footer-col {
            flex: 1;
            min-width: 250px;
        }
        .footer-col h3 {
            font-size: 1.5rem;
            color: #ffd166;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #e46c0a;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: #cbd5e0;
        }
        .footer-col ul li a:hover {
            color: #ffd166;
            padding-left: 5px;
            display: block;
        }
        .copyright {
            text-align: center;
            padding: 25px;
            border-top: 1px solid #2d3748;
            font-size: 0.95rem;
            color: #a0aec0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .article-content {
                padding: 30px;
            }
            .article-header h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .header-container {
                padding: 12px 20px;
            }
            .logo a {
                font-size: 1.9rem;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-body h2 {
                font-size: 1.7rem;
            }
            .article-body h3 {
                font-size: 1.4rem;
            }
            .article-body p {
                font-size: 1.05rem;
            }
            .widget {
                padding: 20px;
            }
            .internal-links {
                padding: 30px;
            }
        }
        @media (max-width: 480px) {
            .article-content {
                padding: 20px;
            }
            .meta {
                flex-direction: column;
                gap: 5px;
            }
            .breadcrumb ul {
                font-size: 0.85rem;
            }
        }
