* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Arial, sans-serif;
        }
        :root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #FFD166;
            --dark: #1A1A2E;
            --light: #F7F7F7;
            --text: #333333;
            --gray: #6C757D;
            --success: #06D6A0;
        }
        body {
            background-color: #fff;
            color: var(--text);
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            text-decoration: none;
            color: var(--secondary);
            transition: color 0.3s;
        }
        a:hover {
            color: var(--primary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
            color: white;
            padding: 1rem 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 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo span {
            color: var(--primary);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.3rem;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .search-box {
            margin-left: 2rem;
            position: relative;
        }
        .search-box input {
            padding: 0.6rem 1rem 0.6rem 2.5rem;
            border-radius: 30px;
            border: none;
            outline: none;
            width: 220px;
            font-size: 0.95rem;
        }
        .search-box i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f0f8ff;
            font-size: 0.9rem;
            border-bottom: 1px solid #eaeaea;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:last-child {
            color: var(--primary);
            font-weight: bold;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: var(--gray);
            font-size: 0.8rem;
        }
        main {
            padding: 2.5rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-header {
            padding: 2.5rem 2.5rem 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta {
            display: flex;
            gap: 1.5rem;
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .meta i {
            margin-right: 5px;
        }
        .article-content {
            padding: 2.5rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content h2 {
            color: var(--secondary);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--accent);
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: var(--primary);
            margin: 2rem 0 1rem;
            font-size: 1.5rem;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .steps {
            counter-reset: step;
            margin: 2.5rem 0;
        }
        .step {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 1.8rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 5rem;
            transition: all 0.3s;
        }
        .step:hover {
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(255,107,53,0.1);
        }
        .step::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .interview {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 2rem;
            border-radius: 12px;
            margin: 2.5rem 0;
            border-left: 6px solid var(--secondary);
        }
        .quote {
            font-style: italic;
            color: #555;
            font-size: 1.1rem;
            margin: 1rem 0;
            padding-left: 1.5rem;
            border-left: 3px solid var(--accent);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: var(--dark);
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid var(--primary);
            font-size: 1.4rem;
        }
        .download-box {
            text-align: center;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            color: white;
            padding: 2.5rem 1.5rem;
            border-radius: 12px;
        }
        .download-box h3 {
            color: white;
            border-bottom: none;
            margin-top: 0;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.9rem 2.5rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            margin-top: 1.5rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #ff5722;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255,107,53,0.4);
        }
        .btn i {
            margin-right: 8px;
        }
        .comments-section, .rating-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #eee;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-bottom: 2.5rem;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--accent);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--dark);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
            margin-top: 2rem;
        }
        .comment {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--secondary);
        }
        .comment-author {
            font-weight: bold;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        .comment-date {
            font-size: 0.85rem;
            color: var(--gray);
        }
        .footer-links {
            background: var(--light);
            padding: 3rem 0 2rem;
            border-top: 1px solid #dee2e6;
        }
        .web-link {
            display: inline-block;
            background: white;
            margin: 0.7rem;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .web-link:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
        }
        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1000px;
            margin: 0 auto;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: white;
            transition: color 0.3s, transform 0.3s;
        }
        .social-links a:hover {
            color: var(--accent);
            transform: scale(1.2);
        }
        .copyright {
            color: #aaa;
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            .logo {
                order: 0;
                font-size: 1.8rem;
            }
            .search-box {
                order: 2;
                margin-left: 0;
                margin-top: 1rem;
                width: 100%;
            }
            .search-box input {
                width: 100%;
            }
            nav {
                order: 3;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links a {
                display: block;
                padding: 1rem;
            }
            .nav-active {
                display: flex;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .feature-img {
                margin: 1.5rem 0;
            }
            .step {
                padding: 1.5rem 1.5rem 1.5rem 4.5rem;
            }
        }
