        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #1a365d; margin-bottom: 1rem; font-weight: 700; line-height: 1.3; }
        h1 { font-size: 2.5rem; border-bottom: 3px solid #f39c12; padding-bottom: 0.5rem; }
        h2 { font-size: 2rem; color: #2c5282; margin-top: 2.5rem; padding-left: 0.5rem; border-left: 5px solid #f39c12; }
        h3 { font-size: 1.5rem; color: #4a5568; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .lead { font-size: 1.25rem; color: #4a5568; font-weight: 500; }
        .highlight { background-color: #fffacd; padding: 0.2rem 0.5rem; border-radius: 3px; }
        strong { color: #2d3748; }
        a { color: #3182ce; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #f39c12; text-decoration: underline; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        @media (min-width: 992px) {
            .main-grid { grid-template-columns: 3fr 1fr; }
        }
        .site-header {
            background: linear-gradient(135deg, #1a365d 0%, #2c5282 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;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .logo-icon { color: #f39c12; }
        .nav-desktop { display: none; }
        @media (min-width: 768px) {
            .nav-desktop {
                display: flex;
                gap: 1.5rem;
            }
        }
        .nav-desktop a {
            color: #e2e8f0;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .nav-desktop a:hover { background-color: rgba(255,255,255,0.1); color: white; }
        .hamburger {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            display: block;
        }
        @media (min-width: 768px) { .hamburger { display: none; } }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            background-color: #2c5282;
            margin-top: 1rem;
            border-radius: 8px;
            overflow: hidden;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #e2e8f0;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #4a6280;
            font-weight: 600;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .nav-mobile a:hover { background-color: #3a6ea5; }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #edf2f7;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #718096;
        }
        .hero {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(44, 82, 130, 0.9)), url('https://images.unsplash.com/photo-1533134486753-c833f0ed4866?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 4rem 1.5rem;
            border-radius: 0 0 12px 12px;
            margin-bottom: 2.5rem;
        }
        .hero h1 { color: white; border-bottom-color: #f39c12; }
        .hero .lead { color: #e2e8f0; }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .info-box {
            background: #f0f9ff;
            border-left: 5px solid #3182ce;
            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: white;
            border: 1px solid #e2e8f0;
            padding: 1.5rem;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }
        .tip-icon { color: #f39c12; font-size: 1.8rem; margin-bottom: 1rem; }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .widget { margin-bottom: 2.5rem; }
        .widget-title {
            font-size: 1.3rem;
            color: #1a365d;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f39c12;
            margin-bottom: 1.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        label { margin-bottom: 0.5rem; font-weight: 600; color: #4a5568; }
        input, textarea, select {
            padding: 0.75rem;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #3182ce;
            box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
        }
        .btn {
            background: #3182ce;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #2c5282;
            transform: scale(1.02);
        }
        .btn-warning { background: #f39c12; }
        .btn-warning:hover { background: #e67e22; }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 1.8rem;
            color: #cbd5e0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #f39c12; }
        .internal-links {
            background: #edf2f7;
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
        }
        .web-link {
            display: inline-block;
            background: white;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            border: 1px solid #cbd5e0;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #3182ce;
            color: white;
            border-color: #3182ce;
            transform: translateY(-3px);
        }
        .site-footer {
            background: #1a365d;
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo { font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 1rem; }
        .footer-links h4 { color: white; margin-bottom: 1.5rem; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.75rem; }
        .footer-links a { color: #cbd5e0; }
        .footer-links a:hover { color: #f39c12; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2c5282;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .emoji { font-size: 1.2em; }
