* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #1a237e;
            --secondary: #ff6f00;
            --accent: #4caf50;
            --dark: #121212;
            --light: #f5f5f5;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #283593);
            color: 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 {
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo a:hover {
            color: #ffcc80;
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            width: 300px;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 12px 20px;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 25px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #ff8f00;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav {
            background: rgba(0,0,0,0.1);
            padding: 10px 0;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            padding: 8px 0;
            position: relative;
            font-weight: 600;
            font-size: 1rem;
        }
        .nav-links a:hover {
            color: #ffcc80;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffcc80;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 30px auto;
        }
        .article-header {
            text-align: center;
            padding-bottom: 30px;
            border-bottom: 2px dashed #eee;
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .meta {
            color: var(--gray);
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .meta span i {
            margin-right: 5px;
            color: var(--accent);
        }
        .content-section {
            padding: 0 40px;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary);
        }
        h3 {
            font-size: 1.5rem;
            color: #444;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #fff8e1;
            border-left: 5px solid var(--secondary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-card {
            background: #f1f8e9;
            padding: 20px;
            border-radius: 10px;
            transition: var(--transition);
            border: 1px solid #c5e1a5;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .feature-card i {
            color: var(--accent);
            font-size: 2rem;
            margin-bottom: 15px;
        }
        .feature-card h4 {
            color: #33691e;
            margin-bottom: 10px;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .rating-section, .comments-section {
            background: #f5f5f5;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin-top: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
        }
        .star:hover {
            transform: scale(1.2);
        }
        input, textarea, select {
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
        }
        button[type="submit"] {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        button[type="submit"]:hover {
            background: #ff8f00;
            transform: scale(1.05);
        }
        .web-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 40px 0;
            padding: 30px;
            background: #e3f2fd;
            border-radius: 10px;
        }
        .web-link {
            background: white;
            padding: 12px 25px;
            border-radius: 30px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
            transition: var(--transition);
            font-weight: 600;
            color: var(--primary);
        }
        .web-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background: var(--dark);
            color: #bbb;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            .content-section { padding: 0 20px; }
        }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
            .search-box { width: 200px; }
            nav { display: none; }
            nav.active { display: block; }
            .nav-links {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
                background: rgba(0,0,0,0.9);
            }
            .header-top { flex-wrap: wrap; gap: 15px; }
            .feature-list { grid-template-columns: 1fr; }
            .web-links { justify-content: center; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.8rem; }
            .search-box { width: 100%; order: 3; margin-top: 15px; }
            .header-top { justify-content: center; }
            .logo { font-size: 1.5rem; }
        }
