        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
        }
        :root {
            --primary: #ff6b00;
            --primary-dark: #e55a00;
            --secondary: #1a237e;
            --light-bg: #f5f5f7;
            --dark-text: #222222;
            --light-text: #666666;
            --border-color: #e0e0e0;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 60px 0;
        }
        .text-center {
            text-align: center;
        }
        h1, h2, h3, h4 {
            color: var(--secondary);
            line-height: 1.3;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-dark);
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--dark-text);
        }
        strong {
            color: var(--primary-dark);
            font-weight: 700;
        }
        em {
            color: var(--light-text);
            font-style: italic;
        }
        .main-header {
            background-color: #fff;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--secondary);
        }
        .logo i {
            font-size: 2.5rem;
        }
        .search-box {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 30px;
            position: relative;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            width: 100%;
            padding: 12px 20px;
            border: 2px solid var(--border-color);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary);
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 25px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--primary-dark);
        }
        .main-nav {
            background-color: var(--secondary);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .nav-links {
            display: flex;
            gap: 0;
        }
        .nav-links a {
            color: white;
            padding: 18px 24px;
            display: block;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background-color: rgba(255,255,255,0.15);
            color: #ffcc80;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 10px;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: var(--light-bg);
            font-size: 0.95rem;
            color: var(--light-text);
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        .hero {
            background: linear-gradient(rgba(26,35,126,0.85), rgba(26,35,126,0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        .hero h1 {
            color: white;
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #e0e0e0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        .main-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .intro-box {
            background: linear-gradient(135deg, #fff8e1, #ffecb3);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid var(--primary);
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .tip-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--primary);
            transition: var(--transition);
        }
        .tip-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .tip-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .highlight {
            background-color: #e3f2fd;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 2px dashed var(--secondary);
        }
        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
            text-align: center;
        }
        .stat-box {
            flex: 1;
            min-width: 200px;
            padding: 25px;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--light-text);
            margin-top: 10px;
        }
        .widget {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-bg);
        }
        .widget ul li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .widget ul li:last-child {
            border-bottom: none;
        }
        .widget ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .rating-form, .comment-form {
            background: var(--light-bg);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .rating-form h3, .comment-form h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 14px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .submit-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.03);
        }
        .web-links-container {
            background: var(--secondary);
            color: white;
            padding: 40px 0;
            margin-top: 40px;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
            transform: translateX(10px);
        }
        .web-link a {
            color: #bbdefb;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:hover {
            color: white;
        }
        .main-footer {
            background: #111;
            color: #aaa;
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            font-size: 1.2rem;
        }
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            font-size: 0.95rem;
            color: #777;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .hero h1 { font-size: 2.5rem; }
            .header-container {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                max-width: 100%;
                margin: 15px 0 0;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                background: var(--secondary);
                flex-direction: column;
                transition: 0.5s;
                padding: 20px 0;
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links a {
                padding: 15px 30px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
            .stats {
                flex-direction: column;
            }
        }
