        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            color: #2c3e50;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            letter-spacing: -0.5px;
            font-family: 'Georgia', serif;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .logo a span { color: #f1c40f; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2.2rem;
        }
        .main-nav a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.3rem;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover, .main-nav a:focus {
            color: #f1c40f;
            border-bottom-color: #f1c40f;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #1a5276;
            flex-direction: column;
            padding: 1rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem 2rem;
            font-weight: 600;
            border-left: 4px solid transparent;
            transition: all 0.3s;
        }
        .mobile-nav a:hover {
            background: #154360;
            border-left-color: #f1c40f;
            padding-left: 2.5rem;
        }
        .breadcrumb {
            background-color: #e8f4fc;
            padding: 0.9rem 0;
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.7rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.7rem;
            color: #7f8c8d;
        }
        .breadcrumb a {
            color: #2980b9;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        .main-article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .article-header { margin-bottom: 2.5rem; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a5276;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .meta-info {
            display: flex;
            gap: 1.5rem;
            color: #7f8c8d;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        .meta-info span { display: flex; align-items: center; gap: 0.5rem; }
        .article-content {
            font-size: 1.125rem;
        }
        .article-content p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin: 2.8rem 0 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 3px solid #f1c40f;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #34495e;
            margin: 2.3rem 0 1.2rem;
        }
        .article-content strong {
            color: #1a5276;
            font-weight: 700;
        }
        .article-content em { font-style: italic; }
        .highlight-box {
            background: linear-gradient(to right, #e8f4fc, #d6eaf8);
            border-left: 5px solid #2e86c1;
            padding: 1.8rem;
            margin: 2.2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .tip { background: #fffde7; border-left-color: #f1c40f; }
        .tip::before { content: "💡 टिप: "; font-weight: bold; }
        .article-img {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .article-img img {
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 1px solid #ddd;
        }
        .article-img figcaption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .article-content ul, .article-content ol {
            margin: 1.5rem 0 1.5rem 2.5rem;
        }
        .article-content li { margin-bottom: 0.8rem; }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #1a5276;
            margin-bottom: 1.3rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #f1c40f;
        }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2c3e50;
        }
        .form-control {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #bdc3c7;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #2e86c1;
            box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.2);
        }
        textarea.form-control { min-height: 150px; resize: vertical; }
        .btn {
            background: linear-gradient(to right, #2e86c1, #1a5276);
            color: white;
            border: none;
            padding: 1rem 2.2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
        }
        .btn:hover {
            background: linear-gradient(to right, #1a5276, #154360);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0,0,0,0.15);
        }
        .btn:active { transform: translateY(-1px); }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            margin-bottom: 1rem;
            direction: ltr;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star:hover ~ .star { color: #ffc107 !important; }
        .rating-stars .star.active { color: #f39c12; }
        .web-links-section {
            background: #e8f4fc;
            padding: 2.5rem 0;
            margin: 3rem 0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            display: block;
            line-height: 1.5;
        }
        .web-link a:hover { color: #2e86c1; }
        .site-footer {
            background: #1a252f;
            color: #ecf0f1;
            padding: 3.5rem 0 2rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-col h4 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: #f1c40f;
            position: relative;
            padding-bottom: 0.7rem;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #2e86c1;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.9rem; }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: #f1c40f; padding-left: 5px; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .main-nav { display: none; }
            .hamburger { display: block; }
            .content-wrapper { gap: 2rem; }
            .main-article, .sidebar { padding: 1.8rem; }
            .article-header h1 { font-size: 2.2rem; }
            .article-content h2 { font-size: 1.8rem; }
            .article-content h3 { font-size: 1.5rem; }
            .meta-info { flex-direction: column; gap: 0.7rem; }
            .breadcrumb ul { font-size: 0.85rem; }
        }
