* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        :root {
            --primary: #1a365d;
            --secondary: #e53e3e;
            --accent: #f6ad55;
            --light: #f7fafc;
            --dark: #2d3748;
            --gray: #a0aec0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background-color: #c53030;
            transform: translateY(-2px);
        }
        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: 20px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--secondary);
        }
        .logo i {
            margin-right: 10px;
            color: var(--accent);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            color: var(--dark);
            padding: 8px 0;
            position: relative;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            color: var(--secondary);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: white;
            padding: 20px;
            border-top: 1px solid #eee;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            font-weight: 600;
            color: var(--dark);
            display: block;
            padding: 10px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: #f1f5f9;
            color: var(--secondary);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #edf2f7;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
            color: var(--secondary);
        }
        .hero {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
            color: white;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
            margin-bottom: 50px;
        }
        .content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        article h2 {
            color: var(--primary);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent);
            font-size: 2rem;
        }
        article h3 {
            color: var(--dark);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fffaf0;
            border-left: 5px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: #f1f5f9;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .stat-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .feature-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            font-size: 1.4rem;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #e2e8f0;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #2c5282;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .rating-widget .stars i {
            font-size: 2rem;
            color: #e2e8f0;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget .stars i.active,
        .rating-widget .stars i:hover {
            color: #f6ad55;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 2px solid #e2e8f0;
            border-radius: 6px;
            font-size: 1rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 5px solid var(--primary);
        }
        .web-link:hover {
            transform: translateX(10px);
            border-left-color: var(--secondary);
        }
        footer {
            background-color: var(--primary);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 20px;
            color: white;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #cbd5e0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero {
                padding: 40px 20px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .content {
                padding: 25px;
            }
            article h2 {
                font-size: 1.7rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .btn {
                padding: 10px 20px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
        }
