body {
            font-family: 'Microsoft YaHei', sans-serif;
            color: #333;
            background-color: #fefefe;
        }
        .navbar-brand {
            font-weight: bold;
            color: #d63384 !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
        }
        .section-title {
            color: #d63384;
            border-bottom: 3px solid #ffc107;
            display: inline-block;
            padding-bottom: 10px;
            margin-bottom: 30px;
        }
        .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .service-icon {
            font-size: 3rem;
            color: #d63384;
            margin-bottom: 20px;
        }
        .testimonial-item {
            background-color: #f8f9fa;
            border-left: 5px solid #d63384;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 10px;
        }
        .friendlink a.flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background-color: #e9ecef;
            border-radius: 20px;
            color: #495057;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .friendlink a.flink:hover {
            background-color: #d63384;
            color: white;
        }
        footer {
            background-color: #343a40;
            color: white;
        }
        .contact-info a {
            color: #ffc107;
            text-decoration: none;
        }
        .contact-info a:hover {
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .btn-primary {
            background-color: #d63384;
            border-color: #d63384;
        }
        .btn-primary:hover {
            background-color: #b02a6b;
            border-color: #b02a6b;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
