* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
        }
        :root {
            --primary: #2d3092;
            --secondary: #ff6b00;
            --accent: #00c853;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul, ol {
            list-style-position: inside;
            margin-left: 1rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary), #1a1c5e);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--secondary);
        }
        .logo i {
            font-size: 1.8rem;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .search-form {
            display: flex;
            width: 300px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            padding: 0 20px;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .search-form button:hover {
            background-color: #e05a00;
        }
        .main-nav {
            padding: 12px 0;
        }
        .nav-list {
            display: flex;
            justify-content: center;
            gap: 30px;
        }
        .nav-list a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        .nav-list a:hover {
            color: var(--secondary);
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .nav-list a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: var(--light);
            border-bottom: 1px solid #dee2e6;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            color: var(--dark);
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .highlight {
            color: var(--secondary);
            font-weight: 700;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .article-section {
            margin-bottom: 40px;
        }
        .article-section h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary);
        }
        .article-section h3 {
            font-size: 1.6rem;
            color: #333;
            margin: 25px 0 15px;
        }
        .article-section p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-section img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin: 25px 0;
            display: block;
        }
        .info-box {
            background: #e3f2fd;
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        .steps {
            counter-reset: step;
            margin: 25px 0;
        }
        .step {
            counter-increment: step;
            margin-bottom: 20px;
            padding-left: 50px;
            position: relative;
        }
        .step::before {
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0;
            background: var(--secondary);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid var(--accent);
            padding-left: 20px;
            margin: 25px 0;
            color: #555;
            background: #f9f9f9;
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            background: var(--light);
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        .sidebar ul {
            list-style: none;
            margin-left: 0;
        }
        .sidebar li {
            margin-bottom: 12px;
        }
        .sidebar a {
            display: block;
            padding: 10px 15px;
            background: white;
            border-radius: 6px;
            border-left: 4px solid var(--primary);
        }
        .sidebar a:hover {
            background: #e9ecef;
            border-left-color: var(--secondary);
            transform: translateX(5px);
        }
        .interactive-module {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--primary);
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
            color: var(--primary);
        }
        .module-title i {
            font-size: 1.8rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ddd;
            margin: 10px 0;
        }
        .stars .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffc107;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(45, 48, 146, 0.1);
        }
        .submit-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: #e05a00;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 107, 0, 0.2);
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
        }
        .web-link {
            background: var(--light);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--accent);
        }
        .web-link a {
            color: var(--primary);
            font-weight: 600;
        }
        .web-link a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 15px;
        }
        .footer-links h4 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .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.95rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .search-form {
                display: none;
            }
            .nav-list {
                flex-direction: column;
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: var(--primary);
                padding: 20px;
                transition: var(--transition);
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            .nav-list.active {
                left: 0;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .article-section h2 {
                font-size: 1.8rem;
            }
            .article-section h3 {
                font-size: 1.4rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
