:root {
            --primary-color: #E53935;
            --secondary-color: #FF9800;
            --accent-color: #4CAF50;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #FFF8F0;
            --bg-section: #FFFFFF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --border-radius: 12px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            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.8;
            color: var(--text-dark);
            background-color: var(--bg-light);
            font-size: 18px;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid var(--secondary-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--bg-section);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            color: var(--secondary-color);
        }
        .logo a:hover {
            text-decoration: none;
            color: var(--secondary-color);
        }
        .search-box {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-box input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-box input:focus {
            border-color: var(--primary-color);
        }
        .search-box button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: var(--secondary-color);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-color);
        }
        nav ul {
            display: flex;
            list-style: none;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        nav li {
            flex: 1;
            text-align: center;
        }
        nav a {
            display: block;
            padding: 18px 20px;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        main {
            padding: 3rem 0;
            background-color: var(--bg-section);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 2rem auto;
        }
        .article-header {
            margin-bottom: 3rem;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .highlight {
            background-color: #FFF3E0;
            border-left: 5px solid var(--secondary-color);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .tip-box {
            background-color: #E8F5E9;
            border: 2px dashed var(--accent-color);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
        }
        .tip-box h4 {
            color: var(--accent-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-form, .rating-form {
            background-color: #F5F5F5;
            padding: 2rem;
            border-radius: var(--border-radius);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
        }
        button[type="submit"] {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        button[type="submit"]:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 152, 0, 0.2);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #FFD700;
            margin: 1rem 0;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background-color: #F1F8E9;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
        }
        .web-link a {
            font-weight: 600;
            color: #388E3C;
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        footer {
            background-color: #263238;
            color: #ECEFF1;
            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;
        }
        .footer-section h3 {
            color: #FFCC80;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 0.8rem;
        }
        .footer-section a {
            color: #B0BEC5;
        }
        .footer-section a:hover {
            color: #FFCC80;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #37474F;
            font-size: 0.9rem;
            color: #90A4AE;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .header-top {
                flex-wrap: wrap;
                gap: 15px;
            }
            .search-box {
                order: 3;
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            body { font-size: 16px; }
            .hamburger {
                display: block;
            }
            nav ul {
                flex-direction: column;
                display: none;
                margin-top: 1rem;
                border-radius: 0;
            }
            nav.active ul {
                display: flex;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .featured-image {
                max-height: 300px;
            }
        }
