:root {
            --primary-color: #0056a6;
            --secondary-color: #f8f9fa;
            --accent-color: #ff6b00;
        }
        body {
            font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand {
            font-weight: bold;
            color: var(--primary-color) !important;
            font-size: 1.8rem;
        }
        .nav-link {
            color: #555 !important;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 166, 0.8), rgba(0, 84, 166, 0.9)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 150px 0;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .section-title {
            color: var(--primary-color);
            border-left: 5px solid var(--accent-color);
            padding-left: 15px;
            margin-bottom: 40px;
            font-size: 2.2rem;
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .btn-primary:hover {
            background-color: #004080;
            border-color: #004080;
        }
        .contact-info li {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .contact-info i {
            color: var(--accent-color);
            margin-right: 10px;
            width: 24px;
        }
        .friendlink a.flink {
            display: inline-block;
            background: var(--secondary-color);
            padding: 10px 20px;
            margin: 5px 10px;
            border-radius: 5px;
            color: var(--primary-color);
            text-decoration: none;
            transition: background 0.3s, color 0.3s;
        }
        .friendlink a.flink:hover {
            background: var(--primary-color);
            color: white;
        }
        footer {
            background-color: #222;
            color: #ddd;
            padding: 40px 0 20px;
        }
        footer a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #444;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: background 0.3s;
        }
        .social-icons a:hover {
            background: var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
