html {
            scroll-behavior: smooth;
        }
        .flink a {
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            background-color: #f9fafb;
        }
        .flink a:hover {
            background-color: #e5e7eb;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .service-card, .team-card, .case-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .service-card:hover, .team-card:hover, .case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(139, 90, 43, 0.1);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #8b5a2b;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
