* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        :root {
            --primary-blue: #1a365d;
            --secondary-blue: #2d3748;
            --accent-gold: #d4af37;
            --accent-red: #c53030;
            --light-bg: #f7fafc;
            --dark-text: #2d3748;
            --light-text: #e2e8f0;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2rem;
        }
        .nav-desktop ul {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: var(--accent-gold);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            background-color: var(--secondary-blue);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .nav-mobile a {
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--accent-gold);
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: #718096;
        }
        .breadcrumb a:hover {
            color: var(--accent-red);
            text-decoration: underline;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        article h1 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 0.5rem;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e2e8f0;
            color: #718096;
            font-size: 0.9rem;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        article h2 {
            font-size: 1.8rem;
            color: var(--secondary-blue);
            margin: 2rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 4px solid var(--accent-gold);
        }
        article h3 {
            font-size: 1.4rem;
            color: var(--secondary-blue);
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        article strong {
            color: var(--accent-red);
            font-weight: 700;
        }
        .highlight-box {
            background-color: #f0f9ff;
            border-left: 5px solid #3b82f6;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .highlight-box h4 {
            color: #1e40af;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        .img-container {
            margin: 2rem 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 3px solid var(--accent-gold);
        }
        .img-caption {
            font-style: italic;
            color: #718096;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #cbd5e0;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--accent-red);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.3rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #cbd5e0;
        }
        .stars .active {
            color: #fbbf24;
        }
        .stars a:hover {
            color: #f59e0b;
        }
        .rating-form {
            margin-top: 1rem;
        }
        .rating-form select,
        .rating-form button {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 0.8rem;
            border-radius: 5px;
            border: 1px solid #cbd5e0;
            font-size: 1rem;
        }
        .rating-form button {
            background-color: var(--accent-gold);
            color: var(--primary-blue);
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: #b8941f;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border-radius: 5px;
            border: 1px solid #cbd5e0;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
            margin-bottom: 0.8rem;
        }
        .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 0.8rem;
            border-radius: 5px;
            border: 1px solid #cbd5e0;
            font-size: 1rem;
        }
        .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: var(--accent-red);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0 2rem;
        }
        .web-link {
            background-color: white;
            padding: 1rem;
            border-radius: 5px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        .web-link a {
            color: var(--primary-blue);
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--accent-red);
            text-decoration: underline;
        }
        .site-footer {
            background-color: var(--primary-blue);
            color: var(--light-text);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
            }
        }
