@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');
        body {
            font-family: 'Noto Sans SC', sans-serif;
            scroll-behavior: smooth;
        }
        .navbar-scroll {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1a3a1f 0%, #2d5a3d 50%, #1a3a1f 100%);
        }
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #2d5a3d, transparent);
        }
        .service-card {
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: #2d5a3d;
        }
        .flink {
            padding: 8px 16px;
            border-radius: 6px;
            background-color: #f9fafb;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 5px;
        }
        .flink:hover {
            background-color: #2d5a3d;
            color: white;
            border-color: #2d5a3d;
        }
        .contact-form input, .contact-form textarea {
            transition: all 0.3s ease;
            border: 1px solid #d1d5db;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: #2d5a3d;
            box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
        }
        .map-container {
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
        }
        .product-image {
            transition: transform 0.5s ease;
        }
        .product-image:hover {
            transform: scale(1.03);
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 12px;
            height: 12px;
            background-color: #2d5a3d;
            border-radius: 50%;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .map-container {
                height: 300px;
            }
        }
