        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }
        .flink {
            display: inline-block;
            padding: 10px 15px;
            border-radius: 8px;
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            color: #334155;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: #3b82f6;
            color: white;
            border-color: #3b82f6;
        }
        .section-padding {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding-top: 60px;
                padding-bottom: 60px;
            }
        }
