        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #2a5c8a;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e74c3c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #e74c3c, #c0392b);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(231, 76, 60, 0.4);
        }
        .section-padding {
            padding: 60px 0;
        }
        .site-header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #e74c3c;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: #2a5c8a;
            font-size: 2rem;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #e74c3c;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #2a5c8a;
            cursor: pointer;
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            flex-direction: column;
            padding: 20px;
            display: none;
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: #f8f9fa;
            border-bottom: 1px solid #eaeaea;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb span {
            color: #999;
            margin: 0 8px;
        }
        .search-box {
            background: #fff;
            border-radius: 50px;
            padding: 8px 20px;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border: 1px solid #ddd;
        }
        .search-box input {
            border: none;
            outline: none;
            padding: 8px;
            width: 200px;
            font-size: 1rem;
        }
        .search-box button {
            background: none;
            border: none;
            color: #2a5c8a;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .hero {
            background: linear-gradient(rgba(42, 92, 138, 0.85), rgba(42, 92, 138, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 20px;
            border-radius: 0 0 30px 30px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px;
        }
        .article-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .article-content h2 {
            color: #2a5c8a;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #e74c3c;
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: #e74c3c;
            margin: 25px 0 10px;
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-content ul, .article-content ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        .article-content li {
            margin-bottom: 8px;
        }
        .highlight {
            background: #fff9e6;
            border-left: 5px solid #f1c40f;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .feature-img {
            border-radius: 15px;
            overflow: hidden;
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .feature-img figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 10px;
            background: #f9f9f9;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 5px;
        }
        .key-term {
            font-weight: 800;
            color: #2a5c8a;
            background: #e8f1f8;
            padding: 2px 6px;
            border-radius: 4px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #2a5c8a;
            margin-bottom: 20px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-stars {
            color: #f1c40f;
            font-size: 1.5rem;
            margin: 15px 0;
        }
        .score-form select, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
        }
        .comment-form textarea {
            height: 120px;
            resize: vertical;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 40px 20px;
        }
        .web-link {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            font-weight: 600;
            color: #2a5c8a;
            display: block;
        }
        .site-footer {
            background: #2a5c8a;
            color: white;
            margin-top: auto;
            padding: 50px 20px 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #f1c40f;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col a {
            color: #ccc;
        }
        .footer-col a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .content-main {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop, .search-box {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 70px 20px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 25px;
            }
            .longtail-links {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
