.flink a {
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 12px 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: white;
            color: #374151;
            font-weight: 500;
        }
        .flink a:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #3b82f6;
            color: #3b82f6;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        }
        .article-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column;
            }
        }
