        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f5f1;
            background-image: linear-gradient(to bottom, #fdfcfb 0%, #f8f5f1 100%);
            padding-bottom: 40px;
        }
        a {
            text-decoration: none;
            color: #d35400;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #a84300;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1a5276 0%, #2e86c1 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;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
        }
        .logo a {
            color: #ffcc5c;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo-icon {
            margin-right: 12px;
            font-size: 2.5rem;
            color: #ffcc5c;
        }
        .logo-text {
            font-family: 'Arial Rounded MT Bold', sans-serif;
            letter-spacing: -0.5px;
        }
        .logo-sub {
            font-size: 0.9rem;
            color: #d6eaf8;
            margin-left: 8px;
            font-weight: 300;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #fff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: #1a5276;
            padding: 1rem;
            display: none;
            flex-direction: column;
            gap: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #666;
            background-color: #f1f8ff;
            border-bottom: 1px solid #e0e0e0;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #d35400;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #999;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
        }
        article h1 {
            font-size: 2.8rem;
            color: #1a5276;
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 3px solid #ffcc5c;
            padding-bottom: 15px;
        }
        article h2 {
            font-size: 2rem;
            color: #2e86c1;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #ddd;
        }
        article h3 {
            font-size: 1.6rem;
            color: #d35400;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #444;
        }
        article emoji {
            font-size: 1.4em;
            margin-right: 8px;
            vertical-align: middle;
        }
        .highlight-box {
            background: linear-gradient(to right, #fff9e6, #fff);
            border-left: 5px solid #ffcc5c;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .highlight-box p {
            margin-bottom: 0;
            font-weight: 600;
            color: #5d4037;
        }
        .figure-img {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .figure-img img {
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
        }
        .figcaption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
        }
        .widget h3 {
            color: #1a5276;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffcc5c;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            border-color: #2e86c1;
        }
        .search-button {
            background: linear-gradient(to bottom, #2e86c1, #1a5276);
            color: white;
            border: none;
            padding: 0 22px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to bottom, #1a5276, #154360);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2.2rem;
            color: #ffcc5c;
            margin-bottom: 15px;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form input[type="radio"] {
            display: none;
        }
        .rating-label {
            cursor: pointer;
        }
        .submit-rating {
            background-color: #27ae60;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 15px;
            width: 100%;
            transition: background-color 0.3s;
        }
        .submit-rating:hover {
            background-color: #219653;
        }
        .comments-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }
        .form-control {
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #2e86c1;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-comment {
            background: linear-gradient(to right, #e67e22, #d35400);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-comment:hover {
            background: linear-gradient(to right, #d35400, #a84300);
        }
        .footer-links-section {
            background: #1a5276;
            color: white;
            padding: 40px 0;
            margin-top: 60px;
            border-radius: 12px 12px 0 0;
        }
        .footer-links-section h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #ffcc5c;
            font-size: 2rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.08);
            padding: 18px;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #d6eaf8;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: #ffcc5c;
            text-decoration: none;
        }
        .site-footer {
            background: #154360;
            color: #d6eaf8;
            padding: 30px 0;
            text-align: center;
            border-radius: 0 0 12px 12px;
            margin-top: -12px;
        }
        .copyright {
            font-size: 0.95rem;
            opacity: 0.9;
        }
        .copyright a {
            color: #ffcc5c;
        }
        @media (max-width: 768px) {
            article {
                padding: 25px;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .widget {
                padding: 20px;
            }
        }
