        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        body {
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            font-size: 1.05rem;
        }
        a {
            text-decoration: none;
            color: #2c3e50;
            transition: color 0.3s;
        }
        a:hover {
            color: #e74c3c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 40px 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffeb3b;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ff9800;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        .desktop-nav li {
            margin-left: 28px;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            color: #ffeb3b;
            border-bottom-color: #ffeb3b;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            height: 100vh;
            background: #1a237e;
            padding: 90px 30px 30px;
            transition: left 0.5s ease;
            z-index: 999;
            overflow-y: auto;
            box-shadow: 5px 0 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            left: 0;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 22px;
        }
        .mobile-nav a {
            color: white;
            font-size: 1.3rem;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:hover {
            color: #ffeb3b;
        }
        .close-btn {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 1.8rem;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e8eaf6;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 8px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 8px;
            color: #666;
        }
        .breadcrumb a {
            color: #3949ab;
        }
        .search-section {
            background-color: #fff;
            padding: 25px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            margin-bottom: 10px;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #3949ab;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(to right, #3949ab, #1a237e);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(to right, #303f9f, #0d1b6a);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-card {
            background: white;
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.07);
            margin-bottom: 30px;
        }
        .article-header h1 {
            font-size: 2.6rem;
            color: #1a237e;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            align-items: center;
            color: #666;
            margin-bottom: 25px;
            font-size: 0.95rem;
            flex-wrap: wrap;
            gap: 15px;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .content-body {
            font-size: 1.1rem;
            color: #444;
        }
        .content-body h2 {
            color: #283593;
            margin: 35px 0 15px;
            font-size: 1.9rem;
            padding-bottom: 8px;
            border-bottom: 2px dashed #c5cae9;
        }
        .content-body h3 {
            color: #3949ab;
            margin: 28px 0 12px;
            font-size: 1.6rem;
        }
        .content-body p {
            margin-bottom: 22px;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e8eaf6, #f3e5f5);
            border-left: 6px solid #3949ab;
            padding: 22px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .feature-img {
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            max-width: 800px;
        }
        .feature-img img {
            width: 100%;
            transition: transform 0.5s;
        }
        .feature-img:hover img {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 8px;
            font-size: 0.95rem;
        }
        .keyword {
            background-color: #ffebee;
            color: #c62828;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .sidebar {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.07);
            align-self: start;
            position: sticky;
            top: 110px;
        }
        .sidebar h3 {
            color: #1a237e;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #c5cae9;
            font-size: 1.5rem;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffc107;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 2px;
            transition: color 0.2s;
        }
        .stars i:hover {
            color: #ff9800;
        }
        .rate-text {
            font-size: 0.9rem;
            color: #666;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            background: #3949ab;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #283593;
        }
        .footer-links {
            background: #1a237e;
            padding: 40px 0;
            margin-top: 40px;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            margin: 8px;
            padding: 12px 25px;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #e8eaf6;
            font-size: 1rem;
        }
        .links-container {
            text-align: center;
        }
        .site-footer {
            background: #0d1b6a;
            color: #c5cae9;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #9fa8da;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            width: 100%;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .article-card {
                padding: 25px 20px;
            }
            .sidebar {
                position: static;
                top: 0;
            }
        }
