* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #74c0fc;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2d4a6e;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a {
            background: none;
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 500px;
            margin: 0 30px;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 20px;
            border: 2px solid #2d4a6e;
            border-radius: 30px 0 0 30px;
            background: #1a2d42;
            color: #fff;
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(90deg, #2d4a6e, #3a5f8a);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #3a5f8a, #4a76b0);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #4dabf7;
            cursor: pointer;
        }
        nav {
            background: rgba(26, 42, 64, 0.9);
            padding: 12px 0;
            border-top: 1px solid #2d4a6e;
        }
        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 35px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .nav-links a:hover {
            color: #ff6b6b;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff6b6b;
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #a0b3c6;
        }
        .breadcrumb a {
            color: #a0b3c6;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        main {
            padding: 30px 0 50px;
        }
        article {
            background: rgba(22, 35, 55, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            margin-bottom: 40px;
            border: 1px solid #2d4a6e;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd43b;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            color: #74c0fc;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #3a5f8a;
        }
        h3 {
            font-size: 1.5rem;
            color: #ffa94d;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(45,74,110,0.5), transparent);
            border-left: 4px solid #ff6b6b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            border: 3px solid #3a5f8a;
            margin: 25px auto;
            display: block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .tip-card {
            background: rgba(42, 60, 85, 0.6);
            padding: 25px;
            border-radius: 10px;
            border-top: 5px solid #4dabf7;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .interactive-section {
            background: rgba(30, 45, 70, 0.8);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #4a76b0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ffd43b;
            cursor: pointer;
        }
        .star:hover {
            transform: scale(1.2);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 15px;
            background: #1a2d42;
            border: 2px solid #2d4a6e;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .submit-btn {
            background: linear-gradient(90deg, #20c997, #12b886);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            align-self: flex-start;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #12b886, #0ca678);
            transform: scale(1.05);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(42, 60, 85, 0.5);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(42, 60, 85, 0.9);
        }
        footer {
            background: rgba(12, 26, 45, 0.95);
            border-top: 2px solid #2d4a6e;
            padding: 40px 0 20px;
            text-align: center;
            color: #a0b3c6;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .copyright {
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #2d4a6e;
        }
        @media (max-width: 992px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                gap: 0;
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(12, 26, 45, 0.98);
                padding: 20px;
                border-top: 1px solid #2d4a6e;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
                padding: 12px 0;
                border-bottom: 1px solid #2d4a6e;
            }
            .search-form {
                margin: 15px 0 0;
                max-width: 100%;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            article {
                padding: 25px;
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            .logo {
                font-size: 1.8rem;
            }
        }
