* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        :root {
            --primary: #d4af37;
            --secondary: #1a472a;
            --accent: #8b4513;
            --dark: #0f2d1c;
            --light: #f5f5dc;
            --text: #2c3e50;
            --gray: #95a5a6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background: linear-gradient(135deg, #fdfcfb 0%, #f5f5dc 100%);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--dark);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo i {
            color: #ffd700;
        }
        .logo span {
            background: linear-gradient(90deg, #d4af37, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links a:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: var(--light);
            padding: 1rem 0;
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--primary);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: var(--gray);
        }
        main {
            padding: 2rem 0;
            min-height: 80vh;
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        h1 {
            color: var(--secondary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid var(--primary);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--accent);
            font-size: 2rem;
            margin: 2rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid var(--primary);
        }
        h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--secondary);
            font-weight: 600;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
        }
        .highlight {
            background: linear-gradient(120deg, #ffecb3 0%, #ffecb3 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .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.15);
            transition: transform 0.5s ease;
            border: 3px solid var(--primary);
        }
        .feature-img:hover {
            transform: scale(1.02);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--primary);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .quote {
            font-style: italic;
            padding: 2rem;
            margin: 2rem 0;
            background: linear-gradient(90deg, #f8f9fa, #ffffff);
            border-radius: 10px;
            border-left: 6px solid var(--accent);
            font-size: 1.2rem;
        }
        .tip-box {
            background: #e8f5e9;
            border: 2px dashed #2e7d32;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 10px;
        }
        .search-box {
            background: var(--light);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto 0;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--primary);
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--primary);
            color: var(--dark);
        }
        .rating-section, .comments-section {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            border: 1px solid #e0e0e0;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            color: var(--gray);
            cursor: pointer;
            font-size: 1.8rem;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffd700;
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            margin: 1rem 0;
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--secondary);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--dark);
                width: 100%;
                padding: 2rem;
                transition: 0.5s;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                left: 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .header-content, .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .search-btn {
                border-radius: 8px;
                padding: 1rem;
            }
        }
