html {
            scroll-behavior: smooth;
        }
        .flink {
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 4px;
            background-color: #f7fafc;
            border: 1px solid #e2e8f0;
            display: inline-block;
            margin: 4px;
        }
        .flink:hover {
            background-color: #edf2f7;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .active-nav {
            color: #e53e3e;
            border-bottom: 2px solid #e53e3e;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .section-padding {
            padding: 5rem 1rem;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 3rem 1rem;
            }
        }
