* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2c5aa0;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e63946;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 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-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffd166;
        }
        .logo a {
            color: inherit;
        }
        .logo a:hover {
            color: #ffd166;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #fff;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffd166;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1e3c72;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
        }
        .nav-mobile li {
            margin: 1rem 0;
        }
        .nav-mobile a {
            color: white;
            font-weight: 600;
            display: block;
            padding: 0.5rem;
            border-radius: 4px;
        }
        .nav-mobile a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #666;
            background-color: #f1f1f1;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #2c5aa0;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-section {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .article-section h1 {
            font-size: 2.5rem;
            color: #1e3c72;
            margin-bottom: 1rem;
            line-height: 1.3;
            border-bottom: 3px solid #ffd166;
            padding-bottom: 0.5rem;
        }
        .article-section h2 {
            font-size: 1.8rem;
            color: #2a5298;
            margin: 1.5rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid #e63946;
        }
        .article-section h3 {
            font-size: 1.4rem;
            color: #333;
            margin: 1.2rem 0 0.8rem;
        }
        .article-section p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #444;
        }
        .article-section strong {
            color: #1e3c72;
            font-weight: 700;
        }
        .article-section em {
            color: #e63946;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-left: 5px solid #2a5298;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 1.5rem 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .interactive-features {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
        }
        .interactive-features h2 {
            color: #1e3c72;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .search-box, .comment-box, .rating-box {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .search-box form, .comment-box form, .rating-box form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .search-box input, .comment-box textarea, .comment-box input, .rating-box select {
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-box input:focus, .comment-box textarea:focus, .comment-box input:focus, .rating-box select:focus {
            border-color: #2a5298;
            outline: none;
        }
        .search-box button, .comment-box button, .rating-box button {
            background: linear-gradient(to right, #2a5298, #1e3c72);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            align-self: flex-start;
        }
        .search-box button:hover, .comment-box button:hover, .rating-box button:hover {
            background: linear-gradient(to right, #1e3c72, #2a5298);
            transform: translateY(-2px);
        }
        .comment-box textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .rating-stars i {
            color: #ffd166;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars i:hover {
            color: #ffb142;
        }
        .sidebar {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: fit-content;
        }
        .sidebar h3 {
            color: #1e3c72;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd166;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 0.8rem;
        }
        .sidebar a {
            display: block;
            padding: 0.5rem;
            border-radius: 6px;
            background-color: #f8f9fa;
            transition: background-color 0.3s;
        }
        .sidebar a:hover {
            background-color: #e9ecef;
        }
        .footer-links {
            background: #1e3c72;
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem 0.5rem 0;
            padding: 0.5rem 1rem;
            background: rgba(255,255,255,0.1);
            border-radius: 6px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
        }
        .web-link a {
            color: #ffd166;
        }
        .site-footer {
            background: #0d1b3e;
            color: #ccc;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #ffd166;
        }
        .site-footer a:hover {
            text-decoration: underline;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-section h1 {
                font-size: 2rem;
            }
            .article-section h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 576px) {
            .article-section {
                padding: 1.5rem;
            }
            .interactive-features {
                padding: 1.5rem;
            }
            .sidebar {
                padding: 1rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-section, .sidebar, .interactive-features {
            animation: fadeIn 0.5s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .spacing-control {
            margin-bottom: 1.5rem;
        }
