* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
    }
    :root {
        --primary: #1a73e8;
        --secondary: #34a853;
        --accent: #ff6d00;
        --dark: #202124;
        --light: #f8f9fa;
        --gray: #5f6368;
        --shadow: 0 4px 12px rgba(0,0,0,0.08);
        --transition: all 0.3s ease;
    }
    body {
        background-color: #f0f4f8;
        color: #333;
        line-height: 1.7;
        font-size: 1.05rem;
    }
    a {
        text-decoration: none;
        color: inherit;
    }
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    header {
        background: linear-gradient(135deg, var(--primary) 0%, #0d47a1 100%);
        color: white;
        padding: 1.2rem 0;
        box-shadow: var(--shadow);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo {
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: -0.5px;
        background: linear-gradient(to right, #ffffff, #a5d6ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    .logo:hover {
        transform: scale(1.02);
        transition: var(--transition);
    }
    nav ul {
        display: flex;
        list-style: none;
        gap: 2rem;
    }
    nav a {
        font-weight: 600;
        font-size: 1.1rem;
        padding: 0.5rem 0.8rem;
        border-radius: 6px;
        transition: var(--transition);
    }
    nav a:hover, nav a.active {
        background-color: rgba(255,255,255,0.15);
        transform: translateY(-2px);
    }
    .hamburger {
        display: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: white;
    }
    .breadcrumb {
        background-color: #e8f0fe;
        padding: 1rem 0;
        margin-bottom: 2rem;
        border-bottom: 1px solid #d1d9e6;
    }
    .breadcrumb ol {
        display: flex;
        list-style: none;
        gap: 0.8rem;
        color: var(--gray);
    }
    .breadcrumb li:not(:last-child)::after {
        content: '›';
        margin-left: 0.8rem;
    }
    .breadcrumb a:hover {
        color: var(--primary);
        text-decoration: underline;
    }
    .search-section {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: var(--shadow);
        margin-bottom: 3rem;
        text-align: center;
    }
    .search-section h2 {
        color: var(--dark);
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    .search-form {
        display: flex;
        max-width: 600px;
        margin: 0 auto;
    }
    .search-input {
        flex-grow: 1;
        padding: 1rem 1.5rem;
        border: 2px solid var(--primary);
        border-radius: 50px 0 0 50px;
        font-size: 1.1rem;
        outline: none;
        transition: var(--transition);
    }
    .search-input:focus {
        box-shadow: 0 0 0 3px rgba(26,115,232,0.2);
    }
    .search-btn {
        background: linear-gradient(to right, var(--primary), #0d47a1);
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 0 50px 50px 0;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: var(--transition);
    }
    .search-btn:hover {
        background: linear-gradient(to right, #0d47a1, var(--primary));
        transform: scale(1.02);
    }
    .main-content {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 3rem;
        margin: 3rem 0;
    }
    @media (max-width: 992px) {
        .main-content {
            grid-template-columns: 1fr;
        }
    }
    .article {
        background: white;
        padding: 3rem;
        border-radius: 16px;
        box-shadow: var(--shadow);
    }
    .article h1 {
        font-size: 2.8rem;
        color: var(--dark);
        margin-bottom: 1.5rem;
        line-height: 1.2;
        border-left: 6px solid var(--accent);
        padding-left: 1.5rem;
    }
    .article h2 {
        font-size: 2rem;
        color: var(--primary);
        margin: 2.5rem 0 1.2rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px dashed #e0e0e0;
    }
    .article h3 {
        font-size: 1.5rem;
        color: var(--secondary);
        margin: 2rem 0 1rem;
    }
    .article p {
        margin-bottom: 1.8rem;
        text-align: justify;
        color: #444;
    }
    .highlight {
        background-color: #fff8e1;
        border-left: 4px solid var(--accent);
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 0 8px 8px 0;
    }
    .highlight p {
        margin-bottom: 0;
    }
    .stats-box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin: 2.5rem 0;
    }
    .stat {
        background: linear-gradient(145deg, #e3f2fd, #f3e5f5);
        padding: 1.5rem;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 3px 6px rgba(0,0,0,0.05);
        transition: var(--transition);
    }
    .stat:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    }
    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary);
        display: block;
    }
    .stat-label {
        font-size: 1rem;
        color: var(--gray);
    }
    .feature-img {
        width: 100%;
        border-radius: 12px;
        margin: 2rem 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        transition: var(--transition);
    }
    .feature-img:hover {
        transform: scale(1.005);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }
    .quote {
        font-style: italic;
        color: #5a5a5a;
        background-color: #f9f9f9;
        padding: 2rem;
        border-radius: 10px;
        margin: 2.5rem 0;
        border-left: 5px solid var(--secondary);
        font-size: 1.2rem;
        line-height: 1.8;
    }
    .quote-author {
        text-align: right;
        font-weight: bold;
        color: var(--primary);
        margin-top: 1rem;
    }
    .sidebar {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .widget {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: var(--shadow);
    }
    .widget h3 {
        color: var(--dark);
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
        border-bottom: 2px solid var(--primary);
    }
    .login-widget form, .comment-form, .rating-form {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .form-group label {
        font-weight: 600;
        color: var(--gray);
    }
    .form-group input, .form-group textarea, .form-group select {
        padding: 0.9rem 1.2rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 1rem;
        transition: var(--transition);
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(26,115,232,0.1);
    }
    .btn {
        background: linear-gradient(to right, var(--primary), var(--secondary));
        color: white;
        border: none;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: var(--transition);
        text-align: center;
    }
    .btn:hover {
        background: linear-gradient(to right, #0d47a1, #2e7d32);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }
    .stars {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin: 1rem 0;
        font-size: 2rem;
        color: #ffc107;
    }
    .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: 1.5rem;
        margin: 3rem 0;
    }
    .web-link {
        background: white;
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        transition: var(--transition);
        border-left: 4px solid var(--secondary);
    }
    .web-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-left-color: var(--accent);
    }
    .web-link a {
        color: var(--primary);
        font-weight: 600;
        display: block;
        margin-bottom: 0.5rem;
    }
    .web-link a:hover {
        text-decoration: underline;
    }
    .web-link p {
        font-size: 0.95rem;
        color: var(--gray);
        line-height: 1.6;
    }
    footer {
        background: var(--dark);
        color: #e8eaed;
        padding: 3rem 0 1.5rem;
        margin-top: 4rem;
    }
    .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }
    .footer-section h4 {
        color: white;
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--primary);
        display: inline-block;
    }
    .footer-links {
        list-style: none;
    }
    .footer-links li {
        margin-bottom: 0.8rem;
    }
    .footer-links a {
        color: #bdc1c6;
        transition: var(--transition);
    }
    .footer-links a:hover {
        color: white;
        padding-left: 0.5rem;
    }
    .copyright {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #3c4043;
        color: #9aa0a6;
        font-size: 0.95rem;
    }
    @media (max-width: 768px) {
        nav ul {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--primary);
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        nav ul.active {
            display: flex;
        }
        .hamburger {
            display: block;
        }
        .article {
            padding: 2rem 1.5rem;
        }
        .article h1 {
            font-size: 2.2rem;
            padding-left: 1rem;
        }
        .search-form {
            flex-direction: column;
        }
        .search-input, .search-btn {
            border-radius: 50px;
            width: 100%;
        }
        .search-input {
            margin-bottom: 1rem;
        }
        .stats-box {
            grid-template-columns: 1fr;
        }
    }
