:root {
            --primary-dark: #0a2c4e;
            --primary: #1a5fb4;
            --primary-light: #4d9ee0;
            --accent: #f97316;
            --accent-light: #fdba74;
            --text-dark: #1e293b;
            --text: #475569;
            --text-light: #94a3b8;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            color: var(--text-dark);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.8rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: var(--radius);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        header {
            background-color: var(--primary-dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent-light);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--accent-light);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-light);
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .search-box {
            display: flex;
            margin-left: 2rem;
        }
        .search-box input {
            padding: 0.6rem 1rem;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            width: 220px;
        }
        .search-box button {
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 0 var(--radius) var(--radius) 0;
            padding: 0 1.2rem;
            cursor: pointer;
        }
        .search-box button:hover {
            background-color: var(--accent-light);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--bg-white);
            border-bottom: 1px solid #e2e8f0;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--text-light);
        }
        main {
            padding: 2rem 0;
            background-color: var(--bg-white);
        }
        .article-header {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #e2e8f0;
        }
        .article-header h1 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
        .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .highlight {
            background-color: #fef3c7;
            border-left: 4px solid #f59e0b;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            padding: 1.5rem;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        .tip-box {
            background-color: var(--bg-light);
            border: 1px dashed var(--primary-light);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        .tip-box h4 {
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .quote {
            font-style: italic;
            padding: 2rem;
            background-color: #f8fafc;
            border-left: 5px solid var(--primary);
            margin: 2.5rem 0;
            font-size: 1.2rem;
            color: var(--text-dark);
        }
        .interaction-section {
            background-color: var(--bg-light);
            padding: 3rem;
            border-radius: var(--radius);
            margin: 4rem 0;
        }
        .rating-form, .comment-form {
            margin-top: 2rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #d1d5db;
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active, .star:hover {
            color: #fbbf24;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #cbd5e1;
            border-radius: var(--radius);
            font-family: inherit;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .footer-links {
            background-color: var(--primary-dark);
            color: white;
            padding: 3rem 0;
        }
        .web-link {
            display: inline-block;
            background-color: rgba(255,255,255,0.05);
            margin: 0.7rem;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: var(--accent);
            transform: scale(1.05);
        }
        .web-link a {
            color: white;
        }
        footer {
            background-color: #0a1a2e;
            color: #cbd5e1;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .nav-links { display: none; }
            .mobile-toggle { display: block; }
            .search-box input { width: 180px; }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-dark);
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active li {
                margin: 0.8rem 0;
            }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .search-box { order: 3; width: 100%; margin: 1rem 0 0 0; }
            .search-box input { width: 100%; }
            .stats-grid { grid-template-columns: 1fr; }
            .interaction-section { padding: 2rem; }
        }
