        body, html {
            font-family: 'Noto Sans', sans-serif !important;
        }
        /* 原始样式保持不变 */
        .cards-container {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin: 242px auto 80px auto;
            max-width: 1400px;
        }
        .card {
            width: 400px;
            border-radius: 20px;
            padding: 0;
            background: rgba(255, 255, 255, 0.65);
            /*border: 5px solid rgba(255, 255, 255, 0.1);*/
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            color: #000;
        }
        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .card-image {
            height: 400px;
            overflow: hidden;
            position: relative;
            border-radius: 16px 16px 0 0;
        }
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-image img {
            transform: scale(1.05);
        }
        .card-content {
            padding: 30px;
            border-radius: 0 0 16px 16px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .card-content h3 {
            font-size: 26px;
            margin-bottom: 20px;
            color: #172a45;
        }
        /* since 2011 换行样式 */
        .break-since {
            display: inline-block;
            width: 9.5em; /* 通过宽度强制换行 */
            white-space: normal; /* 允许换行 */
            overflow-wrap: break-word; /* 确保长单词也能正确换行 */
        }
        .card-content p {
            margin-bottom: 20px;
            flex-grow: 1;
            color: #333;
        }

        .about-hero-section {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            z-index: 1;
            padding: 100px 0;
        }

        .about-hero-bg img {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1920px;
            height: auto;
            z-index: 0;
        }

        .about-hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            padding: 2rem;
            margin-top: 175px;
            background: none;
            border-radius: 0;
        }

        .about-hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            white-space: nowrap;
        }

        .about-hero-content p {
            font-size: 1.2rem;
            line-height: 1.6;
        }

        .about-hero-section::after {
            content: "";
            position: absolute;
            bottom: -150px;
            left: 0;
            width: 100%;
            height: 200px;
            z-index: 1;
        }
        
        /* 新增的图片布局模块样式 */
        .quality-section {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 20px;
            background: #fff;
        }
        .quality-text {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .quality-text h2 {
            font-size: 36px;
            font-weight: bold;
            color: #000;
            text-align: left;
            flex: 1 1 50%;
        }
        .quality-text p {
            font-size: 18px;
            color: #000000;
            text-align: right;
            flex: 1 1 50%;
            line-height: 1.8;
        }
        .image-block {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .row1 {
            display: flex;
            gap: 20px;
        }
        .row1 .img-square {
            flex: 1 1 50%;
            aspect-ratio: 1 / 1;
            background: #ccc;
            border-radius: 16px;
            background-size: cover;
            background-position: center;
        }
        .row1 .img-vertical {
            flex: 1 1 25%;
            aspect-ratio: 3 / 4;
            background: #bbb;
            border-radius: 16px;
            background-size: cover;
            background-position: center;
        }
        .row2 {
            display: flex;
            gap: 20px;
        }
        .row2 .col-left,
        .row2 .col-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
            flex: 1 1 30%;
        }
        .row2 .col-left .img-horizontal,
        .row2 .col-right .img-horizontal {
            aspect-ratio: 16 / 9;
            border-radius: 16px;
            background-size: cover;
            background-position: center;
        }
        .row2 .img-vertical-large {
            flex: 1 1 25%;
            aspect-ratio: 3 / 4;
            background-size: cover;
            background-position: center;
            border-radius: 16px;
        }
        
        /* 新增的全球覆盖模块样式 */
        .global-section {
            max-width: 1200px;
            margin: 100px auto;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 50px 40px 30px;
            flex-wrap: wrap;
        }
        
        .main-title {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }
        
        .main-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #000;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        
        .main-title h2 .world-wide {
            font-weight: 700;
        }
        
        .main-title h2 .project-coverage {
            font-weight: 400;
            display: block;
            margin-top: 8px;
        }
        
        .sub-title {
            flex: 1;
            min-width: 300px;
            padding-top: 10px;
        }
        
        .sub-title p {
            font-size: 18px;
            color: #000;
            margin-bottom: 12px;
            line-height: 1.4;
            text-align: right;
        }
        
        .offices-section {
            padding: 0 40px 50px;
        }
        
        .offices-title {
            font-size: 22px;
            font-weight: 700;
            color: #000;
             /*margin: 0 0 0px;*/
        }
        
        .global-image {
            padding: 0 40px 120px;
        }
        
        .global-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
        }
        
        .office-cards {
            display: flex;
            justify-content: space-between;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .office-card {
            flex: 1;
            min-width: 300px;
            padding: 25px 30px;
            /*border: 2px solid #000;*/
            border-radius: 16px;
            transition: all 0.3s ease;
            color: #000;
        }
        
        /* 仅针对第一个办公室模块（SEEPOSH HONG KONG LTD.） */
        .office-card:first-child {
            padding-left: 0; /* 去除左侧padding，确保和标题对齐 */
            margin-left: 0px; /* 添加负的左边距，向左移动 */
            border-left: 4px solid transparent; /* 默认状态下无左边框 */
            transition: all 0.3s ease; /* 保持动画效果 */
        }
        
        /* 鼠标悬停时 */
        .office-card:hover {
            transform: translateY(-8px); /* 保持与右侧模块一致的动画效果 */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* 保持与右侧模块一致的阴影效果 */
        }
        
        /* 鼠标悬停时，香港模块的动画效果 */
        .office-card:first-child:hover {
             /*border-left: 4px solid #000;*/ /* 鼠标悬停时恢复左边框 */
             /*padding-left: 0px;*//* 鼠标悬停时左边距和其他模块一样 */
            margin-left: 0; /* 鼠标悬停时取消负边距 */
            transform: translateY(-8px); /* 确保和其他模块一致的弹出效果 */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* 确保和其他模块一致的阴影效果 */
        }
        
        .office-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .office-card h4 {
            font-size: 16px;
            font-weight: 700;
            /*margin-bottom: 20px;*/
            color: #000;
        }
        
        .office-card p {
            /*margin-bottom: 12px;*/
            font-size: 14px;
            line-height: 1.4;
            color:#696565
        }
        
        .contact-info {
            margin-top: 15px;
        }
        
        .contact-info p {
            /*margin-bottom: 8px;*/
            font-size: 15px;
        }
        
        /* 响应式设计 */
        @media (max-width: 900px) {
            .section-header {
                padding: 40px 30px 20px;
                flex-direction: column;
                gap: 20px;
            }
            
            .sub-title p {
                text-align: left;
            }
            
            .global-image,
            .offices-section {
                padding: 0 30px 30px;
            }
            
            .quality-text {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .quality-text p {
                text-align: left;
            }
        }
        
        @media (max-width: 768px) {
            .main-title h1 {
                font-size: 32px;
            }
            
            .offices-title {
                font-size: 22px;
            }
            
            .card {
                width: 100%;
                max-width: 400px;
            }
            
            .row1 {
                flex-wrap: wrap;
            }
            
            .img-square {
                flex: 1 1 100%;
            }
            
            .row1 .img-vertical {
                flex: 1 1 calc(50% - 10px);
            }
        }
        
        @media (max-width: 480px) {
            .main-title h1 {
                font-size: 28px;
            }
            
            .office-card {
                min-width: 100%;
            }
            
            .section-header {
                padding: 30px 20px 15px;
            }
            
            .global-image,
            .offices-section {
                padding: 0 20px 20px;
            }
            
            .row1 .img-vertical {
                flex: 1 1 100%;
            }
        }