        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            color: #333;
            line-height: 1.7;
            font-size: 18px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #2c3e50;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e74c3c;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .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);
            border: 0;
        }
        header {
            background: #2c3e50;
            color: #fff;
            padding: 15px 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 a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f39c12;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #fff;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #ecf0f1;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .nav-links a:hover {
            background: #34495e;
            color: #f39c12;
        }
        .breadcrumb {
            background: #34495e;
            padding: 12px 0;
            margin-top: 5px;
        }
        .breadcrumb ul {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            color: #bdc3c7;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #f39c12;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #7f8c8d;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f39c12;
            cursor: pointer;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-container {
                grid-template-columns: 1fr;
            }
        }
        .content {
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .content h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 25px;
            line-height: 1.3;
            border-bottom: 4px solid #f39c12;
            padding-bottom: 15px;
        }
        .content h2 {
            font-size: 2.2rem;
            color: #34495e;
            margin: 35px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #e74c3c;
        }
        .content h3 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin: 25px 0 15px;
        }
        .content p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
            color: #555;
        }
        .content emoji {
            font-size: 1.3em;
            margin: 0 5px;
        }
        .highlight {
            background: #fffacd;
            padding: 20px;
            border-left: 5px solid #f39c12;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight strong {
            color: #e74c3c;
            font-size: 1.2rem;
        }
        .image-section {
            text-align: center;
            margin: 40px 0;
        }
        .image-section img {
            max-height: 500px;
            object-fit: cover;
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #7f8c8d;
            font-size: 1rem;
        }
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .feature-box {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border: 2px solid #dfe6e9;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.1);
            border-color: #f39c12;
        }
        .feature-box i {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        .feature-box h3 {
            color: #2c3e50;
            margin-bottom: 15px;
        }
        .sidebar {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar h3 {
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f39c12;
            font-size: 1.5rem;
        }
        .search-box, .comment-box, .rating-box {
            margin-bottom: 35px;
        }
        .search-box form, .comment-box form, .rating-box form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .search-box input {
            padding: 14px;
            border: 2px solid #bdc3c7;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .search-box input:focus {
            border-color: #f39c12;
            outline: none;
        }
        .search-box button {
            padding: 14px;
            background: #2c3e50;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: #34495e;
        }
        .comment-box textarea, .comment-box input {
            padding: 14px;
            border: 2px solid #bdc3c7;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .comment-box textarea:focus, .comment-box input:focus {
            border-color: #f39c12;
            outline: none;
        }
        .comment-box button {
            padding: 14px;
            background: #27ae60;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .comment-box button:hover {
            background: #219653;
        }
        .rating-box .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .rating-box .stars i {
            font-size: 2rem;
            color: #f1c40f;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating-box .stars i:hover {
            color: #f39c12;
        }
        .rating-box button {
            padding: 14px;
            background: #e74c3c;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .rating-box button:hover {
            background: #c0392b;
        }
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .web-link {
            background: #34495e;
            padding: 20px;
            border-radius: 10px;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: #3d566e;
        }
        .web-link a {
            color: #f39c12;
            font-size: 1.1rem;
            font-weight: 600;
            display: block;
            padding: 8px 0;
            border-bottom: 1px dashed #7f8c8d;
        }
        .web-link a:hover {
            color: #fff;
            border-bottom-color: #f39c12;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #4a6572;
            font-size: 1rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2c3e50;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .content {
                padding: 25px;
            }
            .content h1 {
                font-size: 2.2rem;
            }
            .content h2 {
                font-size: 1.8rem;
            }
            .sidebar {
                position: static;
                margin-top: 40px;
            }
        }
