        html {
            scroll-behavior: smooth;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        .product-card {
            border-radius: 12px;
            overflow: hidden;
            background: white;
            border: 1px solid #e5e7eb;
        }
        .nav-active {
            border-bottom: 2px solid #3b82f6;
            color: #3b82f6;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 4px;
            background: #f3f4f6;
            border-radius: 6px;
            color: #4b5563;
            text-decoration: none;
            transition: all 0.3s;
        }
        .flink:hover {
            background: #3b82f6;
            color: white;
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .hero-text {
                font-size: 2rem;
            }
        }
