* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #2E7D32;
            --secondary: #FF9800;
            --dark: #1B5E20;
            --light: #E8F5E9;
            --text: #333333;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        body {
            color: var(--text);
            background-color: #f9f9f9;
            line-height: 1.7;
        }
        a {
            text-decoration: none;
            color: var(--primary);
            transition: color 0.3s;
        }
        a:hover {
            color: var(--secondary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -1px;
        }
        .logo span {
            color: var(--secondary);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark);
        }
        .desktop-nav a:hover {
            color: var(--secondary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
        }
        .mobile-nav {
            display: none;
            background: white;
            padding: 20px;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            font-weight: 600;
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 12px 0;
            font-size: 0.95rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .search-box {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            padding: 40px 0;
            text-align: center;
            color: white;
        }
        .search-box h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 18px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
        }
        .search-btn {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background-color: #E68900;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-content h2 {
            color: var(--dark);
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary);
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: var(--primary);
            margin: 25px 0 15px;
            font-size: 1.5rem;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content strong {
            color: var(--dark);
        }
        .highlight {
            background-color: var(--light);
            border-left: 5px solid var(--secondary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        .schedule-table th, .schedule-table td {
            border: 1px solid #ddd;
            padding: 15px;
            text-align: left;
        }
        .schedule-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        .schedule-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .schedule-table tr:hover {
            background-color: var(--light);
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: var(--shadow);
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: var(--dark);
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--secondary);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #FFC107;
            margin: 15px 0;
        }
        .rating-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: background 0.3s;
        }
        .rating-btn:hover {
            background-color: var(--dark);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            resize: vertical;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .comment-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background-color: #E68900;
        }
        .footer-links {
            background-color: var(--dark);
            padding: 40px 0;
            color: white;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: white;
            font-weight: 500;
        }
        footer {
            background-color: #111;
            color: #aaa;
            text-align: center;
            padding: 30px 0;
            font-size: 0.95rem;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .search-box h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
