* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: #2a6bc8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e35a00;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a5fb4 0%, #0d3b7a 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-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: #ffcc00;
            font-size: 2.5rem;
        }
        .logo-text {
            background: linear-gradient(to right, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        .main-nav {
            display: flex;
            gap: 1.5rem;
        }
        .main-nav a {
            color: #e0e0ff;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 8px 8px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #1a5fb4;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #888;
            font-size: 0.8rem;
        }
        .search-container {
            background: linear-gradient(to right, #f0f8ff, #e6f2ff);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0, 100, 200, 0.08);
            border: 1px solid #cce0ff;
        }
        .search-container form {
            display: flex;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #2a6bc8;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
            transition: all 0.3s;
        }
        .search-input:focus {
            box-shadow: 0 0 0 3px rgba(42, 107, 200, 0.3);
        }
        .search-button {
            background: linear-gradient(to right, #2a6bc8, #1a5fb4);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 2rem;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to right, #1a5fb4, #0d3b7a);
            transform: scale(1.02);
        }
        main {
            padding: 2rem 0;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 3rem;
            overflow: hidden;
        }
        .article-header {
            padding: 2rem 2rem 1.5rem;
            border-bottom: 2px dashed #e0e0e0;
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a3b7a;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #2a6bc8;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0f0f0;
        }
        h3 {
            font-size: 1.6rem;
            color: #333;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .content-section {
            padding: 0 2rem 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #444;
        }
        .highlight {
            background-color: #fff8e1;
            border-left: 5px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .tip-card {
            background: #f8f9ff;
            border: 1px solid #d0d9ff;
            border-radius: 10px;
            padding: 1.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 200, 0.1);
        }
        .tip-card h4 {
            color: #2a6bc8;
            margin-top: 0;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #ddd;
        }
        .steps {
            counter-reset: step-counter;
            margin: 2.5rem 0;
        }
        .step {
            position: relative;
            padding-left: 3.5rem;
            margin-bottom: 2rem;
            min-height: 50px;
        }
        .step::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            background: linear-gradient(to bottom right, #2a6bc8, #1a5fb4);
            color: white;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .download-cta {
            background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
            color: #333;
            text-align: center;
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem 0;
            box-shadow: 0 10px 30px rgba(255, 153, 0, 0.3);
        }
        .download-cta h3 {
            color: #222;
            margin-bottom: 1rem;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, #1a5fb4, #0d3b7a);
            color: white;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.3rem;
            margin-top: 1.5rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            color: white;
        }
        .user-interaction {
            background-color: #f9f9f9;
            padding: 2.5rem;
            border-radius: 12px;
            margin-top: 3rem;
            border: 1px solid #e0e0e0;
        }
        .rating-section {
            text-align: center;
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px dashed #ccc;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active,
        .star:hover,
        .star:hover ~ .star {
            color: #ffcc00;
        }
        .rating-form,
        .comment-form {
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #555;
        }
        input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input[type="text"]:focus,
        input[type="email"]:focus,
        textarea:focus {
            border-color: #2a6bc8;
            outline: none;
            box-shadow: 0 0 0 3px rgba(42, 107, 200, 0.2);
        }
        .submit-btn {
            background: linear-gradient(to right, #28a745, #1e7e34);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #218838, #155724);
            transform: scale(1.03);
        }
        .footer-links {
            background-color: #1a3b7a;
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.08);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #cce0ff;
            font-size: 1rem;
            display: block;
        }
        .web-link a:hover {
            color: #ffcc00;
        }
        footer {
            background-color: #0d2b5c;
            color: #a0b8e0;
            text-align: center;
            padding: 2rem;
            font-size: 0.95rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            border-top: 1px solid #2a4a7a;
            padding-top: 1.5rem;
            width: 100%;
            max-width: 800px;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .tips-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .main-nav { display: none; width: 100%; flex-direction: column; margin-top: 1rem; }
            .main-nav.active { display: flex; }
            .hamburger { display: block; }
            .search-container form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 10px; }
            .search-button { border-radius: 50px; justify-content: center; padding: 1rem; }
            .content-section, .article-header { padding: 1.5rem; }
            h1 { font-size: 2rem; }
            .download-cta { padding: 2rem 1.5rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .logo a { font-size: 1.8rem; }
            .tip-card { padding: 1.2rem; }
            .stars .star { font-size: 2rem; }
            .web-link-container { grid-template-columns: 1fr; }
        }
