        /* Global styles */
        body {
            font-family: "Arial", "Microsoft Yahei", sans-serif;
            color: #333;
            background-color: #f8f9fa;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: #B9B9B9;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #0F3E99;
        }
        .container {
            max-width: 1200px;
        }
        /* Title style (same as About Us) */
        .section-title {
            position: relative;
            margin-bottom: 40px;
        }
        .section-title h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #222;
            text-align: center;
        }
        .section-title::after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background-color: #0056B3;
            margin: 15px auto 0;
        }
        /* Service hero area */
        .service-hero {
            padding: 60px 0;
            background-color: #fff;
            text-align: center;
        }
        .service-hero p {
            font-size: 1.1rem;
            color: #555;
            max-width: 900px;
            margin: 20px auto 0;
        }
        /* Service card area (consistent with business card style) */
        .service-area {
            padding: 60px 0;
            background-color: #f5f7fa;
        }
        .service-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 15px 15px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%; /* Equal height cards */
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .service-card .icon-box {
            width: 80px;
            height: 80px;
            background-color: #E8F3FF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        .service-card .icon-box .icon {
            width: 40px;
            height: 40px;
        }
        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #222;
            text-align: center;
        }
        .service-card p {
            color: #666;
            font-size: 1rem;
            line-height: 1.7;
        }
        .service-card ul {
            margin: 15px 0;
            padding-left: 20px;
            color: #666;
        }
        .service-card ul li {
            margin-bottom: 8px;
        }
        /* Service process area */
        .process-area {
            padding: 60px 0;
            background-color: #fff;
        }
        .process-item {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        .process-item::after {
            content: "";
            position: absolute;
            top: 40px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: #0056B3;
            display: block;
        }
        .process-item:last-child::after {
            display: none;
        }
        .process-item .process-icon {
            width: 80px;
            height: 80px;
            background-color: #0056B3;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        .process-item .process-icon .icon {
            width: 32px;
            height: 32px;
        }
        .process-item h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #222;
        }
        .process-item p {
            color: #666;
            font-size: 0.95rem;
        }
        /* Service support area */
        .support-area {
            padding: 60px 0;
            background-color: #0056B3;
            color: #fff;
        }
        .support-area .section-title h2 {
            color: #fff;
        }
        .support-area .section-title::after {
            background-color: #fff;
        }
        .support-card {
            text-align: center;
            padding: 20px;
        }
        .support-card .icon {
            width: 45px;
            height: 45px;
            margin-bottom: 20px;
        }
        .support-card h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .support-card p {
            font-size: 0.95rem;
            opacity: 0.9;
        }
        /* Contact area (same as About Us) */
        .contact-area {
            padding: 60px 0;
            background-color: #f5f7fa;
        }
        .contact-info {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 30px;
        }
        .contact-info h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: #222;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
        }
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .contact-item .icon {
            width: 24px;
            height: 24px;
            margin-right: 15px;
        }
        .contact-item p {
            margin: 0;
            color: #555;
            font-size: 1.05rem;
        }

        /* Responsive adaptation (same as About Us) */
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 1.6rem;
            }
            .service-card {
                padding: 30px 20px;
            }
            .process-item::after {
                display: none;
            }
            .process-item {
                margin-bottom: 30px;
            }
        }
