
        /* Core Variables */
        :root {
            --primary-color: #0F172A;
            --secondary-color: #334155;
            --accent-color: #0284C7;
            --bg-light: #F8FAFC;
            --border-color: #E2E8F0;
            --text-main: #1E293B;
            --text-muted: #64748B;
        }

        /* Base Settings */
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-main);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #ffffff;
        }
        
        h1, h2, h3, h4 { color: var(--primary-color); line-height: 1.3; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
        .btn-primary {
            display: inline-block;
            background: var(--primary-color);
            color: #fff;
            padding: 12px 28px;
            text-decoration: none;
            font-weight: 600;
            border-radius: 4px;
            transition: background 0.3s ease;
        }
        .btn-primary:hover { background: var(--secondary-color); }

        /* Hero Section (Parallel Layout) */
        .hero-section {
            display: flex;
            align-items: center;
            gap: 4rem;
            padding: 4rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .hero-content { flex: 1; }
        .hero-content h1 { font-size: 2.5rem; margin-bottom: 1rem; }
        .hero-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
        
        .hero-media {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 550px; /* Restrict media size */
        }
        .hero-media img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            object-fit: cover;
        }
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Core Tech Section */
        .tech-section {
            padding: 4rem 0;
            background: var(--bg-light);
        }
        .tech-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        /* Specs Table Section */
        .specs-section { padding: 4rem 0; }
        .specs-desc {
            max-width: 900px;
            margin-bottom: 2rem;
            color: var(--secondary-color);
            font-size: 1.05rem;
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        .specs-table th, .specs-table td {
            padding: 16px 24px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        .specs-table th { background: var(--bg-light); font-weight: 600; width: 30%; }

        /* Testimonials */
        .testimonials-section { padding: 4rem 0; background: var(--bg-light); }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }
        .review-card {
            background: #fff;
            padding: 2rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
        }
        .review-text { font-style: italic; color: var(--secondary-color); margin-bottom: 1.5rem; }
        .review-author { font-weight: 600; color: var(--primary-color); }
        .review-title { font-size: 0.9rem; color: var(--text-muted); }

        /* FAQ Section */
        .faq-section { padding: 4rem 0; }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .faq-item h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
        .faq-item p { color: var(--text-muted); margin-top: 0; }

        /* Blog Section (Stretched Links) */
        .blog-section { padding: 4rem 0; background: var(--bg-light); }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .blog-card {
            background: #fff;
            padding: 2rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            position: relative;
            transition: transform 0.2s ease;
        }
        .blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
        .blog-card h4 { margin-top: 0; margin-bottom: 1rem; }
        .blog-card a::after {
            content: "";
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            z-index: 1;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-section, .tech-grid, .faq-grid { flex-direction: column; grid-template-columns: 1fr; }
            .hero-media { max-width: 100%; }
            .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
        }
    