* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f0f8ff;
            padding-top: 80px;
        }
        a {
            text-decoration: none;
            color: #0066cc;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff6600;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2980, #26d0ce);
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #ffdd40;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a2980;
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            color: #ffdd40;
            padding-left: 10px;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #e6f2ff;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #ff6600;
        }
        .breadcrumb span {
            color: #888;
        }
        .search-section {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 30px auto;
            max-width: 800px;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: 2px solid #26d0ce;
            border-radius: 8px;
            font-size: 1rem;
        }
        .search-button {
            padding: 15px 25px;
            background: linear-gradient(to right, #26d0ce, #1a2980);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .search-button:hover {
            transform: scale(1.05);
        }
        .article-header {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(90deg, #ff7e5f, #feb47b);
            color: white;
            border-radius: 15px;
            margin-bottom: 40px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
        }
        .article-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 40px;
            line-height: 1.8;
        }
        .article-content h2 {
            color: #1a2980;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffdd40;
            font-size: 2rem;
        }
        .article-content h3 {
            color: #26d0ce;
            margin: 25px 0 10px;
            font-size: 1.6rem;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
            color: #444;
        }
        .highlight {
            background-color: #fffacd;
            padding: 20px;
            border-left: 5px solid #ff6600;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .tip-card {
            background: linear-gradient(145deg, #e6f7ff, #cceeff);
            padding: 25px;
            border-radius: 12px;
            border-left: 6px solid #1a2980;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .tip-card h4 {
            color: #1a2980;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        .interactive-section {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 50px 0;
        }
        .comment-section, .rating-section {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        .interactive-section h3 {
            color: #1a2980;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-input, .form-textarea {
            padding: 15px;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: #26d0ce;
            outline: none;
        }
        .submit-button {
            padding: 15px;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .submit-button:hover {
            background: linear-gradient(to right, #feb47b, #ff7e5f);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .footer-links {
            background-color: #1a2980;
            color: white;
            padding: 50px 20px;
            margin-top: 50px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        .web-link {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .web-link a {
            color: #ffdd40;
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }
        .web-link p {
            font-size: 0.95rem;
            opacity: 0.9;
        }
        .copyright {
            text-align: center;
            padding: 25px;
            background-color: #0d1b5c;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
            .article-content h2 {
                font-size: 1.7rem;
            }
            .article-content h3 {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
            }
            .interactive-section {
                flex-direction: column;
            }
        }
