        * {
            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: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: #1a365d;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            border-left: 6px solid #f59e0b;
            padding-left: 1rem;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            border-bottom: 3px solid #e2e8f0;
            padding-bottom: 0.5rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: clamp(1.3rem, 3vw, 1.7rem);
            color: #2d3748;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #4a5568;
            background-color: #e6fffa;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #38b2ac;
        }
        .highlight {
            background-color: #fef3c7;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .keyword {
            color: #dd6b20;
            font-weight: 600;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        @media (min-width: 992px) {
            .main-grid {
                grid-template-columns: 3fr 1fr;
            }
        }
        header {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #fbbf24;
            text-decoration: none;
            letter-spacing: -1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        .logo a span {
            color: white;
        }
        .nav-desktop {
            display: none;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s;
        }
        .nav-desktop a:hover {
            color: #fbbf24;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #fbbf24;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
            transition: transform 0.3s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: #1e3a8a;
            padding: 1.5rem;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            z-index: 999;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-mobile ul {
            list-style: none;
        }
        .nav-mobile li {
            margin-bottom: 1.2rem;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            font-size: 1.3rem;
            display: block;
            padding: 0.7rem;
            border-radius: 6px;
            transition: background-color 0.3s;
        }
        .nav-mobile a:hover {
            background-color: #2563eb;
        }
        @media (min-width: 768px) {
            .nav-desktop {
                display: block;
            }
            .hamburger {
                display: none;
            }
            .nav-mobile {
                display: none;
            }
        }
        .breadcrumb {
            padding: 1rem 1.5rem;
            background-color: #edf2f7;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #718096;
        }
        .breadcrumb a {
            color: #4a5568;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #2d3748;
            text-decoration: underline;
        }
        .search-section {
            background-color: #ffffff;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 2rem 0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #cbd5e0;
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 1.1rem;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: #4299e1;
        }
        .search-button {
            background: linear-gradient(to right, #4299e1, #3182ce);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to right, #3182ce, #2b6cb0);
            transform: scale(1.02);
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
            color: #718096;
            font-size: 0.95rem;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            position: relative;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            padding: 1rem;
            background-color: #f7fafc;
            font-style: italic;
            color: #4a5568;
            text-align: center;
        }
        .stats-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
            border-left: 5px solid #1890ff;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-title {
            font-size: 1.4rem;
            color: #1890ff;
            margin-bottom: 1rem;
        }
        .interview {
            background-color: #fefce8;
            border: 1px dashed #f59e0b;
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 12px;
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: #78350f;
            text-align: center;
            margin: 1.5rem 0;
            padding: 1.5rem;
            background-color: white;
            border-radius: 8px;
            border-left: 5px solid #d97706;
        }
        aside {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #2d3748;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #e2e8f0;
            margin-bottom: 1.2rem;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
        }
        .quick-links a {
            color: #4a5568;
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 0.7rem;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .quick-links a:hover {
            background-color: #edf2f7;
            color: #1a365d;
            padding-left: 1.2rem;
        }
        .quick-links i {
            margin-right: 0.7rem;
            color: #4299e1;
        }
        .cta-box {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 1.8rem;
            border-radius: 12px;
            text-align: center;
        }
        .cta-button {
            display: inline-block;
            background-color: white;
            color: #059669;
            padding: 0.9rem 1.8rem;
            margin-top: 1rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .interactive-section {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            margin: 2.5rem 0;
        }
        .rating-form, .comment-form {
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2d3748;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #cbd5e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #4299e1;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 2rem;
            color: #e2e8f0;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
            transform: scale(1.1);
        }
        .submit-button {
            background: linear-gradient(to right, #ed8936, #dd6b20);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-button:hover {
            background: linear-gradient(to right, #dd6b20, #c05621);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(221, 107, 32, 0.3);
        }
        .longtail-links {
            background-color: #f7fafc;
            padding: 3rem 1.5rem;
            margin-top: 3rem;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .web-link {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.04);
            transition: all 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }
        .web-link a {
            color: #2d3748;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .web-link i {
            color: #4299e1;
            margin-right: 0.8rem;
            font-size: 0.9rem;
        }
        .web-link a:hover {
            color: #4299e1;
            text-decoration: underline;
        }
        footer {
            background-color: #1a202c;
            color: #cbd5e0;
            padding-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            padding: 0 1.5rem 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #fbbf24;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #4a5568;
            padding-bottom: 0.5rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #fbbf24;
            padding-left: 5px;
        }
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #2d3748;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: #4299e1;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding: 1.5rem;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #a0aec0;
        }
