        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
            line-height: 1.6;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            overflow-x: hidden;
        }
        a {
            color: #ff7a45;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9a6c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0c0f17 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #ff7a45;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff7a45, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: #00ccff;
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .nav-link {
            color: #b0b7c3;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-link:hover {
            color: #ff7a45;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff7a45;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e0e0e0;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #8a94a6;
            background-color: #141a24;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #8a94a6;
        }
        .breadcrumb a:hover {
            color: #ff7a45;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .hero {
            text-align: center;
            padding: 3rem 0;
            background: radial-gradient(circle at center, #1c2333 0%, #0f1419 70%);
            margin-bottom: 3rem;
            border-bottom: 1px solid #2a3245;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(255,122,69,0.3);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #b0b7c3;
        }
        .highlight-box {
            background: linear-gradient(90deg, #1e2a3a, #2a3b52);
            border-left: 5px solid #ff7a45;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .highlight-box p {
            margin: 0;
            font-size: 1.1rem;
            color: #d0d7e3;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        .main-content {
            background-color: #141a24;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        .sidebar {
            background-color: #141a24;
            padding: 1.5rem;
            border-radius: 12px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        article section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px dashed #2a3245;
        }
        h2 {
            color: #ffcc00;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a3245;
        }
        h3 {
            color: #00ccff;
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            color: #c0c8d4;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #ffffff;
        }
        .bold {
            font-weight: 700;
            color: #ff9a6c;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .image-container {
            margin: 2rem auto;
            text-align: center;
        }
        .feature-img {
            border-radius: 10px;
            border: 3px solid #2a3245;
            box-shadow: 0 8px 20px rgba(0,0,0,0.6);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 30px rgba(255,122,69,0.3);
        }
        .caption {
            font-style: italic;
            color: #8a94a6;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            margin: 2rem 0;
            border-radius: 10px;
            background: #000;
        }
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        blockquote {
            border-left: 4px solid #ff7a45;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #d0d7e3;
            background-color: rgba(255,122,69,0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
            color: #c0c8d4;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .interaction-section {
            background-color: #1a2230;
            padding: 2rem;
            border-radius: 12px;
            margin-top: 3rem;
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .form-box {
            background-color: #141a24;
            padding: 1.5rem;
            border-radius: 10px;
        }
        .form-title {
            color: #00ccff;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #b0b7c3;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            background-color: #0f1419;
            border: 1px solid #2a3245;
            border-radius: 6px;
            color: #e0e0e0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff7a45;
        }
        button {
            background: linear-gradient(90deg, #ff7a45, #ff5a1f);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #ff8a55, #ff6a2f);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,122,69,0.4);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .long-tail-links {
            margin: 4rem 0 2rem;
            padding: 2rem;
            background-color: #1a2230;
            border-radius: 12px;
        }
        .web-link {
            display: inline-block;
            background-color: #141a24;
            margin: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            border: 1px solid #2a3245;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #ff7a45;
            border-color: #ff7a45;
            color: white;
            transform: translateY(-3px);
        }
        .web-link:hover a {
            color: white;
        }
        .site-footer {
            background: linear-gradient(135deg, #0c0f17 0%, #1a1f2e 100%);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid #ff7a45;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ff7a45;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: #00ccff;
            margin-bottom: 1rem;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3245;
            color: #8a94a6;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #1a1f2e;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 1.5rem;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .main-content {
                padding: 1.5rem;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .highlight-box {
                padding: 1rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
        .d-flex {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
