        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.8;
            color: #333;
            background: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            color: #1a237e;
            margin: 1.5em 0 0.8em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 4px solid #ff5722;
            padding-bottom: 0.3em;
        }
        h2 {
            font-size: 2rem;
            background: linear-gradient(90deg, #1a237e, #3949ab);
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
        }
        h3 {
            font-size: 1.6rem;
            color: #283593;
            padding-left: 10px;
            border-left: 5px solid #ff9800;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            font-size: 1.1rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 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-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffeb3b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #4caf50;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e8eaf6;
            padding: 12px 0;
            margin-bottom: 2rem;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb a {
            color: #3949ab;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
            margin: 2rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        aside {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 14px;
            border: 2px solid #c5cae9;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus {
            border-color: #3949ab;
            outline: none;
        }
        button {
            background: linear-gradient(135deg, #ff5722, #ff9800);
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 87, 34, 0.3);
        }
        .featured-img {
            width: 100%;
            border-radius: 12px;
            margin: 2rem 0;
            border: 3px solid #e8eaf6;
            transition: transform 0.5s;
        }
        .featured-img:hover {
            transform: scale(1.02);
        }
        .highlight {
            background: linear-gradient(90deg, #e3f2fd, #bbdefb);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #2196f3;
            margin: 1.5rem 0;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.4rem;
            margin-right: 8px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #1a237e;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        footer {
            background: #1a237e;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            width: 100%;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a237e;
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            article, aside {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
        }
