        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.8;
            font-size: 1.1rem;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffc107;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            background-color: #ffc107;
            color: #1a237e;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a237e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid #3949ab;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: #283593;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 12px 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #1a237e;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid #ffc107;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        .meta-info {
            color: #666;
            font-size: 1rem;
            margin-bottom: 20px;
        }
        .meta-info i {
            margin-right: 8px;
            color: #ffc107;
        }
        .content-section {
            margin-bottom: 50px;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h2 {
            color: #283593;
            font-size: 2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #ffc107;
        }
        h3 {
            color: #3949ab;
            font-size: 1.6rem;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        strong {
            color: #1a237e;
            font-weight: 700;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 20px;
            border-left: 5px solid #ffc107;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .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 #e8eaf6;
        }
        .image-container figcaption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .form-section {
            background: #f3f4ff;
            padding: 30px;
            border-radius: 12px;
            margin-top: 40px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #1a237e;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #c5cae9;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #3949ab;
            outline: none;
        }
        button {
            background: linear-gradient(to right, #1a237e, #3949ab);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 1.1rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #283593, #5c6bc0);
            transform: scale(1.03);
        }
        .rating {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .rating i {
            color: #ddd;
            cursor: pointer;
            font-size: 1.8rem;
            transition: color 0.2s;
        }
        .rating i:hover,
        .rating i.active {
            color: #ffc107;
        }
        .footer-links {
            background-color: #1a237e;
            padding: 40px 0;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            background: #283593;
            margin: 10px;
            padding: 12px 25px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .web-link a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }
        .web-link:hover {
            background: #3949ab;
            transform: translateY(-5px);
        }
        footer {
            background-color: #0d153a;
            color: #c5cae9;
            text-align: center;
            padding: 30px 0;
            font-size: 0.95rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .copyright {
            border-top: 1px solid #3949ab;
            padding-top: 20px;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 15px 20px; }
        }
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            .content-section { padding: 20px; }
            .form-section { padding: 20px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
        }
