        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff6b00;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff6b00, #ffa500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            -webkit-text-fill-color: #ff6b00;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .desktop-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            color: #ffa500;
            border-bottom-color: #ffa500;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: #ffa500;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(12, 26, 45, 0.98);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #ddd;
            padding: 10px;
            border-left: 3px solid #ff6b00;
            font-weight: 600;
        }
        .breadcrumb {
            background: #152642;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #ffa500;
        }
        .search-box {
            background: #1e3a5f;
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        .search-box h2 {
            color: #ffa500;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #ff6b00;
            border-radius: 8px 0 0 8px;
            background: #0c1a2d;
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(to right, #ff6b00, #ff8c00);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #ff8c00, #ffa500);
        }
        main {
            flex: 1;
            padding: 20px 0 40px;
        }
        article {
            background: rgba(21, 38, 66, 0.7);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #2d4a76;
        }
        h1 {
            color: #ffa500;
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
        }
        .article-meta {
            text-align: center;
            color: #aaa;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        h2 {
            color: #4dabf7;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #2d4a76;
        }
        h3 {
            color: #74c0fc;
            font-size: 1.4rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,107,0,0.1), transparent);
            border-left: 5px solid #ff6b00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .tip-card {
            background: #1a3a5f;
            padding: 20px;
            border-radius: 10px;
            border-top: 4px solid #ffa500;
            transition: transform 0.3s;
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255,107,0,0.2);
        }
        .feature-img {
            width: 100%;
            border-radius: 12px;
            margin: 30px auto;
            border: 3px solid #ff6b00;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
        }
        .interaction-section {
            background: #152642;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #ffa500;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            background: #0c1a2d;
            border: 1px solid #2d4a76;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #555;
            margin: 10px 0;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffcc00;
        }
        .submit-btn {
            background: linear-gradient(to right, #00b894, #00a085);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #00a085, #008b74);
            transform: scale(1.03);
        }
        .longtail-links {
            background: #0c1a2d;
            padding: 30px 0;
            margin-top: 40px;
        }
        .web-link {
            display: inline-block;
            background: #1a3a5f;
            margin: 10px;
            padding: 12px 20px;
            border-radius: 8px;
            border: 1px solid #2d4a76;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #2d4a76;
            border-color: #ff6b00;
        }
        .web-link a {
            color: #e0e0e0;
        }
        .web-link a:hover {
            text-decoration: none;
            color: #ffa500;
        }
        footer {
            background: #0a1424;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid #ff6b00;
            margin-top: auto;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #2d4a76;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input,
            .search-form button {
                border-radius: 8px;
                margin-bottom: 10px;
            }
        }
