* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f5f2e9;
            color: #2c1810;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            text-decoration: none;
            color: #1a5f7a;
            transition: color 0.3s;
        }
        a:hover {
            color: #0d3b4d;
            text-decoration: underline;
        }
        .container {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        header {
            background: linear-gradient(135deg, #1a5f7a 0%, #0d3b4d 100%);
            color: white;
            padding: 1.5rem 0;
            border-bottom: 5px solid #d4af37;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 0 1rem;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #d4af37;
        }
        .logo span {
            color: #d4af37;
        }
        .search-form {
            display: flex;
            flex-grow: 0.4;
        }
        .search-form input {
            padding: 0.75rem 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            flex-grow: 1;
            font-size: 1rem;
        }
        .search-form button {
            background: #d4af37;
            color: #2c1810;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #b8941f;
        }
        nav {
            background-color: #0d3b4d;
            margin-top: 1rem;
            position: relative;
        }
        .nav-desktop {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-desktop li {
            position: relative;
        }
        .nav-desktop a {
            color: #fff;
            padding: 1rem 1.5rem;
            display: block;
            font-weight: 600;
            transition: background 0.3s;
        }
        .nav-desktop a:hover {
            background-color: #1a5f7a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            display: none;
            list-style: none;
            background-color: #0d3b4d;
            flex-direction: column;
            position: absolute;
            width: 100%;
            z-index: 100;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 1rem 1.5rem;
            display: block;
            border-bottom: 1px solid #1a5f7a;
        }
        .nav-mobile a:hover {
            background-color: #1a5f7a;
        }
        .breadcrumb {
            padding: 1rem 1.5rem;
            background-color: #e8dfca;
            font-size: 0.9rem;
            color: #555;
            border-bottom: 1px solid #d4af37;
        }
        .breadcrumb a {
            color: #1a5f7a;
        }
        main {
            flex: 1;
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        .content-area {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            color: #0d3b4d;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #1a5f7a;
            margin: 2rem 0 1rem;
            font-size: 1.8rem;
        }
        h3 {
            color: #2c1810;
            margin: 1.5rem 0 0.8rem;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #f8f3e6;
            border-left: 4px solid #d4af37;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .term {
            font-weight: bold;
            color: #0d3b4d;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            margin: 2rem auto;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 2px solid #d4af37;
        }
        .image-caption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.5rem;
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: fit-content;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            color: #1a5f7a;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffc107;
        }
        .rating-form input, .comment-form input,
        .rating-form textarea, .comment-form textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: #1a5f7a;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .btn:hover {
            background: #0d3b4d;
        }
        .btn-gold {
            background: #d4af37;
            color: #2c1810;
        }
        .btn-gold:hover {
            background: #b8941f;
        }
        .comments-list {
            margin-top: 1.5rem;
        }
        .comment-item {
            border-bottom: 1px solid #eee;
            padding: 1rem 0;
        }
        .comment-author {
            font-weight: bold;
            color: #1a5f7a;
        }
        .comment-date {
            font-size: 0.85rem;
            color: #777;
        }
        .comment-text {
            margin-top: 0.5rem;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0 2rem;
        }
        .web-link {
            background: #e8dfca;
            padding: 1rem;
            border-radius: 4px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-3px);
            background: #d4af37;
        }
        .web-link a {
            color: #2c1810;
            font-weight: 600;
        }
        footer {
            background: linear-gradient(135deg, #0d3b4d 0%, #092831 100%);
            color: white;
            padding: 2rem 1.5rem;
            margin-top: 3rem;
            text-align: center;
            border-top: 5px solid #d4af37;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .footer-links a {
            color: #d4af37;
        }
        .copyright {
            font-size: 0.9rem;
            color: #aaa;
            border-top: 1px solid #1a5f7a;
            padding-top: 1rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .long-tail-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
                align-items: stretch;
            }
            .search-form {
                width: 100%;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: -3.5rem;
                right: 1rem;
            }
            .breadcrumb {
                padding: 0.8rem 1rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .content-area, aside {
                padding: 1.5rem;
            }
            .long-tail-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .long-tail-links {
                grid-template-columns: 1fr;
            }
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }
