
        /* 美国公司注册服务页面独享CSS部分 */
        
        /* 页面横幅 */
        .page-banner {
            margin-top: 80px;
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(26, 60, 110, 0.9), rgba(26, 60, 110, 0.7)), url('/template/jia/images/14.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(248, 181, 0, 0.1)"/></svg>');
            background-size: cover;
        }
        
        .banner-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .banner-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #fff, var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .banner-content p {
            font-size: 20px;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(135deg, var(--secondary-color), #ffa500);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(248, 181, 0, 0.4);
            font-size: 18px;
            letter-spacing: 1px;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(248, 181, 0, 0.6);
            color: white;
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.2);
            transform: rotate(45deg);
            transition: var(--transition);
        }
        
        .btn:hover::after {
            left: 100%;
        }
        
        .btn-pulse {
            animation: btnPulse 2s infinite;
        }
        
        @keyframes btnPulse {
            0% { box-shadow: 0 0 0 0 rgba(248, 181, 0, 0.6); }
            70% { box-shadow: 0 0 0 15px rgba(248, 181, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(248, 181, 0, 0); }
        }
        
        /* 美国介绍板块 */
        .usa-intro {
            padding: 100px 0;
            background-color: var(--light-color);
            position: relative;
        }
        
        .usa-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(26, 60, 110, 0.03)"/></svg>');
            background-size: cover;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 42px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-size: 18px;
        }
        
        .usa-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .usa-text h3 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .usa-text p {
            margin-bottom: 20px;
            color: var(--text-light);
            font-size: 17px;
        }
        
        .usa-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            opacity: 0;
            transform: translateX(50px) rotate(5deg);
            transition: all 0.8s ease;
            height: 400px;
        }
        
        .usa-image.animate {
            opacity: 1;
            transform: translateX(0) rotate(0);
        }
        
        .usa-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }
        
        .usa-image:hover img {
            transform: scale(1.05);
        }
        
        .usa-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 60, 110, 0.2), rgba(248, 181, 0, 0.2));
            opacity: 0;
            transition: var(--transition);
        }
        
        .usa-image:hover::after {
            opacity: 1;
        }
        
        /* 美国优势分析板块 */
        .usa-analysis {
            padding: 100px 0;
            background: linear-gradient(135deg, #f9fbfd, #fff);
            position: relative;
        }
        
        .analysis-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .analysis-card {
            background: linear-gradient(135deg, #fff, #f9fbfd);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.5);
        }
        
        .analysis-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .analysis-card:hover::before {
            transform: scaleX(1);
        }
        
        .analysis-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .analysis-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .analysis-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(26, 60, 110, 0.1), rgba(248, 181, 0, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: var(--transition);
            position: relative;
        }
        
        .analysis-card:hover .analysis-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            transform: rotateY(180deg) scale(1.1);
        }
        
        .analysis-icon i {
            font-size: 36px;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .analysis-card:hover .analysis-icon i {
            color: white;
            transform: rotateY(-180deg);
        }
        
        .analysis-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .analysis-features {
            list-style: none;
            text-align: left;
            margin-top: 20px;
            margin-bottom: 25px;
        }
        
        .analysis-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .analysis-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        /* 服务项目板块 */
        .services-section {
            padding: 100px 0;
            background-color: var(--light-color);
            position: relative;
        }
        
        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(26, 60, 110, 0.03)"/></svg>');
            background-size: cover;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .service-card {
            background: linear-gradient(135deg, #fff, #f9fbfd);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.5);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(26, 60, 110, 0.1), rgba(248, 181, 0, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: var(--transition);
            position: relative;
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            transform: rotateY(180deg) scale(1.1);
        }
        
        .service-icon i {
            font-size: 36px;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon i {
            color: white;
            transform: rotateY(-180deg);
        }
        
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .service-features {
            list-style: none;
            text-align: left;
            margin-top: 20px;
            margin-bottom: 25px;
        }
        
        .service-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .service-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        /* 办理材料板块 */
        .materials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f9fbfd, #fff);
            position: relative;
        }
        
        .materials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .material-card {
            background: linear-gradient(135deg, #fff, #f9fbfd);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.5);
        }
        
        .material-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .material-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .material-card h3 {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .material-card h3 i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .material-list {
            list-style: none;
        }
        
        .material-list li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }
        
        .material-list li::before {
            content: '\f0a4';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        /* 办理流程板块 */
        .process-section {
            padding: 100px 0;
            background-color: var(--light-color);
            position: relative;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 60px;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            z-index: 1;
            border-radius: 2px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            flex: 1;
        }
        
        .process-step.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #fff, #f9fbfd);
            border: 3px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .process-step:hover .step-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            transform: scale(1.15);
            border-color: transparent;
        }
        
        .step-icon i {
            font-size: 34px;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .process-step:hover .step-icon i {
            color: white;
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--secondary-color), #ffa500);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        
        .step-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .step-content p {
            color: var(--text-light);
        }
        
        /* 办理周期与费用板块 */
        .timeline-cost-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color), #2c5282);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .timeline-cost-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(248, 181, 0, 0.1)"/></svg>');
            background-size: cover;
        }
        
        .timeline-cost-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 50px;
            position: relative;
            z-index: 1;
        }
        
        .timeline-card, .cost-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
        }
        
        .timeline-card.animate, .cost-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .timeline-card:hover, .cost-card:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .timeline-card h3, .cost-card h3 {
            font-size: 26px;
            margin-bottom: 25px;
            color: white;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .timeline-card h3::after, .cost-card h3::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .timeline-item, .cost-item {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .timeline-item:last-child, .cost-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .timeline-item h4, .cost-item h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }
        
        .timeline-item p, .cost-item p {
            color: rgba(255,255,255,0.8);
        }
        
        .price-tag {
            display: inline-block;
            padding: 8px 15px;
            background: var(--secondary-color);
            color: var(--dark-color);
            border-radius: 20px;
            font-weight: bold;
            margin-top: 10px;
        }
        
        /* 修复服务优势板块标题和描述字体颜色为白色 */
        .timeline-cost-section .section-title h2,
        .timeline-cost-section .section-title p {
            color: white;
        }
        
        /* 离岸银行知识库板块 */
        .knowledge {
            padding: 100px 0;
            background-color: var(--light-color);
            position: relative;
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .article-card {
            background: linear-gradient(135deg, #fff, #f9fbfd);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }
        
        .article-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .article-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .article-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .article-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 60, 110, 0.3), rgba(248, 181, 0, 0.3));
            opacity: 0;
            transition: var(--transition);
        }
        
        .article-card:hover .article-image::after {
            opacity: 1;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .article-card:hover .article-image img {
            transform: scale(1.1);
        }
        
        .article-content {
            padding: 25px;
        }
        
        .article-content h3 {
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .article-content h3 a {
            color: var(--dark-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .article-content h3 a:hover {
            color: var(--primary-color);
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-light);
            font-size: 14px;
            margin-top: 15px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .banner-content h1 {
                font-size: 42px;
            }
        }
        
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                width: 50%;
                margin-bottom: 40px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .materials-container, .timeline-cost-container {
                grid-template-columns: 1fr;
            }
            
            .usa-content {
                grid-template-columns: 1fr;
            }
            
            .analysis-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 15px 0;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav li {
                margin: 5px 10px;
            }
            
            .phone-number {
                margin-top: 15px;
            }
            
            .process-step {
                width: 100%;
            }
            
            .banner-content h1 {
                font-size: 36px;
            }
            
            .banner-content p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 16px;
            }
        }
        
        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .analysis-grid {
                grid-template-columns: 1fr;
            }
            
            .banner-content h1 {
                font-size: 30px;
            }
            
            .banner-content p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .usa-text h3 {
                font-size: 26px;
            }
        }