:root {
            --primary-color: #0056b3;
            --secondary-color: #28a745;
            --accent-color: #17a2b8;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 179, 0.8), rgba(0, 84, 179, 0.9)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-title {
            color: var(--primary-color);
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 10px;
            margin-bottom: 30px;
            display: inline-block;
        }
        .service-card {
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .project-img {
            height: 250px;
            object-fit: cover;
            transition: opacity 0.3s;
        }
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 84, 179, 0.8);
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
        }
        .project-item:hover .project-overlay {
            opacity: 1;
        }
        .project-item:hover .project-img {
            opacity: 0.9;
        }
        .news-card {
            border-left: 5px solid var(--accent-color);
            transition: background-color 0.3s;
        }
        .news-card:hover {
            background-color: #f1f9ff;
        }
        .contact-info i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
        }
        .friendlink {
            background-color: #e9ecef;
            padding: 20px;
            border-radius: 10px;
        }
        .flink {
            display: inline-block;
            margin: 5px 10px;
            padding: 8px 15px;
            background-color: white;
            border-radius: 5px;
            text-decoration: none;
            color: var(--dark-color);
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        .btn-custom {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 30px;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .btn-custom:hover {
            background-color: #004494;
            color: white;
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
