        * { 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;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #1a5276; margin-bottom: 1rem; line-height: 1.3; font-weight: 700; }
        h1 { font-size: clamp(2rem, 5vw, 3.2rem); text-align: center; border-bottom: 3px solid #f1c40f; padding-bottom: 0.5rem; margin-top: 1rem; }
        h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); border-left: 5px solid #2ecc71; padding-left: 1rem; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); color: #16a085; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; text-align: justify; font-size: clamp(1rem, 2.5vw, 1.1rem); }
        strong { color: #c0392b; font-weight: 700; }
        em { color: #8e44ad; font-style: italic; }
        .highlight { background-color: #fffacd; padding: 0.2rem 0.5rem; border-radius: 4px; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 992px) {
            .container { grid-template-columns: 3fr 1fr; }
            main { order: 1; }
            aside { order: 2; }
        }
        header { background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%); color: white; padding: 1rem 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-between; align-items: center; }
        .logo a { font-size: 2rem; font-weight: 800; color: #f1c40f; text-decoration: none; font-family: 'Arial Black', sans-serif; letter-spacing: 1px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .logo a:hover { color: #fff; }
        nav ul { display: flex; list-style: none; gap: 1.8rem; }
        nav a { color: #ecf0f1; text-decoration: none; font-weight: 600; font-size: 1.05rem; padding: 0.5rem 0.8rem; border-radius: 5px; transition: all 0.3s ease; }
        nav a:hover, nav a.active { background-color: #f1c40f; color: #2c3e50; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #f1c40f; }
        .breadcrumb { background-color: #e8f4fc; padding: 0.8rem 1.5rem; margin-top: 0.5rem; font-size: 0.95rem; border-radius: 0 0 8px 8px; }
        .breadcrumb a { color: #1a5276; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        main { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.07); margin-top: 1rem; }
        article section { margin-bottom: 3rem; }
        .lead { font-size: 1.3rem; color: #2c3e50; background-color: #e8f6f3; padding: 1.5rem; border-radius: 10px; margin-bottom: 2.5rem; border-left: 5px solid #16a085; }
        .article-img { width: 100%; max-height: 450px; object-fit: cover; border-radius: 10px; margin: 2rem auto; box-shadow: 0 8px 16px rgba(0,0,0,0.1); border: 3px solid #1a5276; }
        aside { margin-top: 1rem; }
        .sidebar-widget { background: white; padding: 1.8rem; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); margin-bottom: 2rem; }
        .sidebar-widget h3 { border-bottom: 2px dashed #f1c40f; padding-bottom: 0.7rem; margin-top: 0; }
        .form-group { margin-bottom: 1.5rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #2c3e50; }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #bdc3c7;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus { outline: none; border-color: #1a5276; box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.2); }
        button, .btn {
            background: linear-gradient(to right, #1a5276, #2e86c1);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            text-decoration: none;
        }
        button:hover, .btn:hover { background: linear-gradient(to right, #154360, #1a5276); transform: translateY(-2px); box-shadow: 0 6px 12px rgba(26, 82, 118, 0.3); }
        .rating { display: flex; gap: 0.5rem; margin: 1rem 0; }
        .star { font-size: 1.8rem; color: #ddd; cursor: pointer; transition: color 0.2s; }
        .star:hover, .star.active { color: #f1c40f; }
        .comment { border-bottom: 1px solid #eee; padding: 1.5rem 0; }
        .comment-author { font-weight: bold; color: #1a5276; }
        .comment-date { color: #7f8c8d; font-size: 0.9rem; }
        .web-links-container { background: #1a5276; padding: 2.5rem 1.5rem; margin-top: 3rem; border-radius: 12px 12px 0 0; }
        .web-links { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
        .web-link { background: rgba(255,255,255,0.1); padding: 1rem; border-radius: 8px; transition: transform 0.3s; }
        .web-link:hover { transform: translateY(-5px); background: rgba(255,255,255,0.2); }
        .web-link a { color: #f1c40f; text-decoration: none; font-weight: 600; display: block; }
        .web-link a:hover { text-decoration: underline; }
        footer { background: #2c3e50; color: #ecf0f1; padding: 2.5rem 1.5rem 1.5rem; text-align: center; }
        .copyright { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #4a6572; font-size: 0.95rem; color: #bdc3c7; }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .hamburger { display: block; }
            nav ul { 
                display: none; 
                flex-direction: column; 
                width: 100%; 
                background-color: #1a5276; 
                position: absolute; 
                top: 100%; 
                left: 0; 
                padding: 1rem; 
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
                border-radius: 0 0 12px 12px;
            }
            nav ul.active { display: flex; }
            nav a { display: block; padding: 1rem; }
            main { padding: 1.5rem; }
            .sidebar-widget { padding: 1.2rem; }
            .web-links { grid-template-columns: 1fr; }
        }
        .text-center { text-align: center; }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
        .p-3 { padding: 1.5rem; }
        .shadow { box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
