* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #2c5282;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1a365d;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #1a365d 0%, #2d3748 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            color: #f6ad55;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: #ecc94b;
        }
        .logo-text {
            font-family: 'Cambria', serif;
            position: relative;
        }
        .logo-text::after {
            content: 'भारत';
            position: absolute;
            top: -8px;
            right: -45px;
            font-size: 0.7rem;
            background: #e53e3e;
            color: white;
            padding: 2px 6px;
            border-radius: 10px;
        }
        .search-form {
            display: flex;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            width: 300px;
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 12px 20px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: #3182ce;
            color: white;
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #2c5282;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav {
            background: #2d3748;
            padding: 10px 0;
            border-top: 1px solid #4a5568;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-menu a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        .nav-menu a:hover {
            background: #4a5568;
            color: white;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #edf2f7;
            color: #4a5568;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #4a5568;
        }
        .breadcrumb a:hover {
            color: #2d3748;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        h1 {
            color: #1a365d;
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 3px solid #f6ad55;
            padding-bottom: 15px;
        }
        h2 {
            color: #2d3748;
            font-size: 1.8rem;
            margin: 35px 0 15px;
            padding-left: 15px;
            border-left: 5px solid #3182ce;
        }
        h3 {
            color: #4a5568;
            font-size: 1.4rem;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #2d3748;
            font-weight: 600;
            background: #f7fafc;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #38b2ac;
            margin-bottom: 30px;
        }
        .highlight {
            background: linear-gradient(120deg, #fed7d7 0%, #feebc8 100%);
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            border: 1px dashed #e53e3e;
        }
        .highlight h3 {
            color: #c53030;
            margin-top: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: #ebf8ff;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 2px solid #90cdf4;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #3182ce;
            margin-bottom: 15px;
        }
        .stat-card h4 {
            color: #2d3748;
            margin-bottom: 10px;
        }
        .stat-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .caption {
            font-style: italic;
            color: #718096;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        blockquote {
            border-left: 5px solid #38b2ac;
            padding-left: 20px;
            margin: 25px 0;
            color: #4a5568;
            font-style: italic;
            background: #f0fff4;
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .tip {
            background: #e6fffa;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .tip i {
            color: #38b2ac;
            font-size: 1.5rem;
            margin-top: 3px;
        }
        .interaction-forms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .form-box {
            background: #f7fafc;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #cbd5e0;
        }
        .form-box h3 {
            margin-top: 0;
            color: #2d3748;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #4a5568;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #cbd5e0;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #3182ce;
            box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
        }
        .btn {
            background: #3182ce;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #2c5282;
            color: white;
            text-decoration: none;
        }
        .rating {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 1.8rem;
            color: #cbd5e0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #f6ad55;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background: #edf2f7;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #38b2ac;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #e2e8f0;
            transform: translateX(5px);
        }
        .web-link a {
            color: #2d3748;
            font-weight: 600;
            display: block;
        }
        footer {
            background: #1a202c;
            color: #cbd5e0;
            padding-top: 40px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #f7fafc;
            margin-bottom: 20px;
            font-size: 1.3rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #3182ce;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #cbd5e0;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #f6ad55;
        }
        .copyright {
            text-align: center;
            padding: 25px 0;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            .mobile-toggle {
                display: block;
            }
            .nav-menu {
                flex-direction: column;
                gap: 0;
                display: none;
            }
            .nav-menu.active {
                display: flex;
            }
            .nav-menu li {
                width: 100%;
            }
            .nav-menu a {
                padding: 15px;
                border-bottom: 1px solid #4a5568;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            article {
                padding: 25px;
            }
            .interaction-forms {
                grid-template-columns: 1fr;
            }
        }
