* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #ff6b35;
            --secondary: #004e89;
            --accent: #00a896;
            --light: #f7f9fc;
            --dark: #2d3047;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f0f2f5;
            color: #333;
            line-height: 1.7;
        }
        a {
            text-decoration: none;
            color: var(--secondary);
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }
        .logo span {
            color: var(--secondary);
        }
        .search-form {
            display: flex;
            flex: 0 1 400px;
        }
        .search-input {
            flex-grow: 1;
            padding: 10px 15px;
            border: 2px solid #ddd;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 20px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: #e55a2b;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }
        .main-nav {
            background: var(--secondary);
        }
        .nav-list {
            display: flex;
            list-style: none;
        }
        .nav-list li {
            flex: 1;
            text-align: center;
        }
        .nav-list a {
            display: block;
            color: white;
            padding: 15px 10px;
            font-weight: 600;
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        .nav-list a:hover {
            background: rgba(255,255,255,0.1);
        }
        .nav-list li:last-child a {
            border-right: none;
        }
        .breadcrumb {
            padding: 12px 0;
            background: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb span {
            color: var(--dark);
            margin: 0 5px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            padding: 30px 0;
        }
        .article-section {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
        }
        .article-section h1 {
            color: var(--dark);
            font-size: 2.2rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .meta-info {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            display: flex;
            gap: 15px;
        }
        .featured-image {
            margin: 25px 0;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .img-caption {
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 8px 15px;
            font-size: 0.9rem;
            text-align: center;
        }
        .article-body h2 {
            color: var(--secondary);
            font-size: 1.8rem;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px dashed #eee;
        }
        .article-body h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin: 25px 0 12px;
        }
        .article-body p {
            margin-bottom: 18px;
            text-align: justify;
            font-size: 1.05rem;
        }
        .article-body strong {
            color: var(--dark);
            font-weight: 700;
        }
        .highlight-box {
            background: #fff9e6;
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .stat-card {
            background: var(--light);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .stat-card i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 10px;
        }
        .rating-form, .comment-form {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
        }
        .rating-form h3, .comment-form h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin: 15px 0;
            direction: ltr;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .star-rating input:checked ~ label {
            color: #ffc107;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
        }
        .btn-submit {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn-submit:hover {
            background: #e55a2b;
            transform: translateY(-2px);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--secondary);
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light);
        }
        .popular-links {
            list-style: none;
        }
        .popular-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #eee;
        }
        .popular-links a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .popular-links i {
            color: var(--accent);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            background: var(--light);
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .tag:hover {
            background: var(--primary);
            color: white;
        }
        .web-links-section {
            background: white;
            padding: 40px 0;
            margin-top: 30px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid var(--accent);
            transition: var(--transition);
        }
        .web-link:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }
        .site-footer {
            background: var(--dark);
            color: #adb5bd;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #adb5bd;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #495057;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex: 0 1 300px;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }
            .nav-list.active {
                max-height: 500px;
            }
            .nav-list li {
                text-align: left;
            }
            .nav-list a {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                padding: 12px 20px;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                flex: 1 0 100%;
                margin-top: 15px;
            }
            .article-section h1 {
                font-size: 1.8rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
