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;
            text-decoration: none;
            color: #4a5568;
        }
        .flink:hover {
            background-color: #edf2f7;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .active-nav {
            color: #9c4221;
            border-bottom: 2px solid #9c4221;
        }
        .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;
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 15px;
            height: 15px;
            background-color: #9c4221;
            border-radius: 50%;
        }
        .timeline-item:after {
            content: '';
            position: absolute;
            left: 7px;
            top: 20px;
            width: 1px;
            height: calc(100% + 10px);
            background-color: #e2e8f0;
        }
        .timeline-item:last-child:after {
            display: none;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 3rem 1rem;
            }
        }
