
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Space+Grotesk:wght@700&display=swap');
        
        .nebula-gradient {
            background: linear-gradient(135deg, #fafafa 0%, #f4f4f5 100%);
        }
        .header-font {
            font-family: 'Space Grotesk', sans-serif;
        }
        .spec-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .spec-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
            border-color: #6366f1;
        }
        .faq-item {
            border-bottom: 1px solid #e2e8f0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
    