        * { 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: #333;
            background-color: #f8f9fa;
            background-image: linear-gradient(to bottom, #f1f3f4, #ffffff 200px);
            padding-top: 80px; 
        }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #1a365d; font-weight: 700; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.5rem; border-left: 6px solid #e63946; padding-left: 15px; margin-top: 1.5rem; }
        h2 { font-size: 2rem; border-bottom: 2px solid #a8dadc; padding-bottom: 8px; margin-top: 2.5rem; }
        h3 { font-size: 1.6rem; color: #457b9d; margin-top: 2rem; }
        p { margin-bottom: 1.3rem; text-align: justify; }
        .lead { font-size: 1.25rem; color: #555; font-weight: 400; }
        strong { color: #1a365d; }
        em { color: #e63946; }
        .highlight { background-color: #fffacd; padding: 2px 5px; border-radius: 3px; }
        .site-header {
            background: linear-gradient(135deg, #1a365d 0%, #2a4d7a 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: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: #e63946; }
        .nav-desktop { display: flex; gap: 25px; }
        .nav-desktop a {
            color: #e0e0e0;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 5px;
            transition: color 0.3s;
            position: relative;
        }
        .nav-desktop a:hover { color: white; }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #e63946;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #2a4d7a;
            padding: 20px;
            border-top: 1px solid #3a5d8a;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 12px 0;
            border-bottom: 1px solid #3a5d8a;
            font-weight: 600;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .nav-mobile a:hover { color: #a8dadc; }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #666;
            background-color: #f1f3f4;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a { color: #1a365d; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #e63946; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        .featured-image {
            margin: 25px 0;
            border-radius: 10px;
            overflow: hidden;
            border: 5px solid #a8dadc;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background: #f1f3f4;
            color: #555;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: #1a365d;
            padding-bottom: 10px;
            border-bottom: 2px solid #a8dadc;
        }
        .search-form { display: flex; margin-top: 15px; }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #a8dadc;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background: #1a365d;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #2a4d7a; }
        .rating-form, .comment-form { margin-top: 20px; }
        .stars { display: flex; gap: 5px; margin-bottom: 15px; }
        .stars input { display: none; }
        .stars label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label { color: #ffc107; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #555; }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #1a365d;
            outline: none;
        }
        .submit-btn {
            background: linear-gradient(to right, #e63946, #d62828);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
        }
        .longtail-links {
            background: #1a365d;
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.08);
            padding: 18px;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #a8dadc;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover { color: white; text-decoration: underline; }
        .site-footer {
            background: #0a1a2f;
            color: #b0b0b0;
            padding: 30px 0 20px;
            text-align: center;
        }
        .footer-container { display: flex; flex-direction: column; align-items: center; }
        .copyright { margin-top: 20px; font-size: 0.9rem; color: #888; }
        .copyright a { color: #a8dadc; }
        @media (max-width: 768px) {
            body { padding-top: 70px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            .header-container { padding: 12px 15px; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .article-content { padding: 20px; }
            .sidebar-widget { padding: 20px; }
            .main-content { gap: 25px; }
        }
        .text-center { text-align: center; }
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        .p-3 { padding: 1rem; }
        .rounded { border-radius: 8px; }
        .shadow { box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
