        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Roboto', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #1a365d;
            --secondary: #e53e3e;
            --accent: #38a169;
            --light: #f7fafc;
            --dark: #2d3748;
            --gray: #718096;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        ul, ol {
            list-style-position: inside;
            padding-left: 1.2em;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-red { color: var(--secondary); }
        .text-green { color: var(--accent); }
        .bg-light { background-color: var(--light); }
        .bg-dark { background-color: var(--dark); color: white; }
        .rounded { border-radius: 8px; }
        .shadow { box-shadow: var(--shadow); }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(135deg, var(--secondary), #c53030);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            margin: 10px 5px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(229, 62, 62, 0.3);
        }
        .btn-secondary {
            background: linear-gradient(135deg, var(--primary), #2c5282);
        }
        .section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary);
        }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        .logo i {
            color: var(--secondary);
            margin-right: 10px;
        }
        .logo span {
            color: var(--secondary);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after,
        .desktop-nav a.active::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: white;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: #f5f5f5;
            color: var(--secondary);
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #edf2f7;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.8)), url('https://images.unsplash.com/photo-1552820728-8b83bb6b773f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .search-section {
            background-color: white;
            padding: 40px 20px;
            text-align: center;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .search-box button:hover {
            background-color: #2c5282;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-content h2, .article-content h3, .article-content h4 {
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        .article-content h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
        }
        .article-content h3 {
            font-size: 1.8rem;
            color: var(--dark);
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight-box {
            background-color: #e6fffa;
            border-left: 5px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-item {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-top: 4px solid var(--primary);
        }
        .feature-item i {
            color: var(--accent);
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .rating-stars {
            color: #fbbf24;
            font-size: 1.8rem;
            margin: 15px 0;
        }
        .rating-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 12px 15px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-list {
            margin-top: 20px;
        }
        .comment-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary);
        }
        .comment-date {
            font-size: 0.85rem;
            color: var(--gray);
        }
        .footer-links {
            background-color: #2d3748;
            padding: 50px 20px;
            color: white;
        }
        .web-link {
            display: inline-block;
            background-color: #4a5568;
            color: white;
            padding: 12px 20px;
            margin: 8px;
            border-radius: 6px;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        .web-link:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--primary);
            color: #cbd5e0;
            padding: 40px 20px;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links-list a {
            display: block;
            padding: 8px 0;
            color: #cbd5e0;
        }
        .footer-links-list a:hover {
            color: white;
            padding-left: 5px;
        }
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #4a5568;
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
        }
        .social-icons a:hover {
            background-color: var(--secondary);
            transform: scale(1.1);
        }
        .copyright {
            padding-top: 30px;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .section-title { font-size: 2rem; }
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
            .header-container { padding: 15px; }
            .article-content { padding: 25px; }
            .main-content { padding: 20px 15px; }
            .feature-list { grid-template-columns: 1fr; }
            .btn { padding: 12px 25px; }
        }
