        /* ====== 独享CSS部分 - 塞舌尔公司注册页面 ====== */
        
        /* 主内容区域 */
        .main-content {
            margin-top: 80px;
        }
        
        /* 页面标题区域 */
        .page-hero {
            background: linear-gradient(135deg, #0d5d8c 0%, #1a8cff 100%);
            color: var(--white);
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background-image: url('/template/jia/images/14.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
        
        .page-hero::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 168, 232, 0.5) 0%, transparent 100%);
            clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
        
        .page-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }
        
        .page-hero-content h1 {
            font-size: 60px;
            margin-bottom: 20px;
            line-height: 1.1;
        }
        
        .page-hero-content p {
            font-size: 20px;
            opacity: 0.9;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            margin-bottom: 40px;
        }
        
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            color: var(--white);
        }
        
        .breadcrumb i {
            font-size: 14px;
            opacity: 0.7;
        }
        
        .breadcrumb .current {
            color: var(--accent);
            font-weight: 600;
        }
        
        /* 服务概览 */
        .service-overview {
            background-color: var(--white);
            padding: 80px 0;
        }
        
        .overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .overview-text h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 24px;
            line-height: 1.2;
        }
        
        .overview-text p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 24px;
            line-height: 1.7;
        }
        
        .overview-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }
        
        .feature-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--light);
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 15px;
        }
        
        .feature-tag i {
            color: var(--accent);
        }
        
        .overview-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            height: 400px;
        }
        
        .overview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 税率介绍 */
        .tax-section {
            background-color: var(--light);
            padding: 100px 0;
        }
        
        .tax-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .tax-info {
            background-color: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-md);
        }
        
        .tax-info h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 24px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-gray);
        }
        
        .tax-points {
            margin-bottom: 30px;
        }
        
        .tax-point {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .tax-point i {
            color: var(--accent);
            font-size: 20px;
            margin-right: 15px;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .tax-point-content h4 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .tax-point-content p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.6;
        }
        
        .tax-highlight {
            background: linear-gradient(135deg, #0d5d8c, #1a8cff);
            color: var(--white);
            padding: 30px;
            border-radius: var(--radius-lg);
            text-align: center;
        }
        
        .tax-highlight h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--white);
            border-bottom: none;
        }
        
        .tax-highlight p {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 20px;
        }
        
        .tax-rate {
            font-size: 48px;
            font-weight: 800;
            color: var(--accent);
            margin: 20px 0;
        }
        
        /* 政策与架构区域 */
        .policy-architecture-section {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .policy-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
            border-bottom: 2px solid var(--light-gray);
            padding-bottom: 20px;
        }
        
        .tab-btn {
            padding: 12px 28px;
            background-color: transparent;
            color: var(--dark);
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }
        
        .tab-btn:hover {
            color: var(--accent);
        }
        
        .tab-btn.active {
            color: var(--accent);
            background-color: rgba(0, 168, 232, 0.1);
        }
        
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -22px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--accent);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .tab-content h3 {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 24px;
        }
        
        .tab-content p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .policy-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 30px;
        }
        
        .policy-card {
            background-color: var(--light);
            border-radius: var(--radius-lg);
            padding: 30px;
            transition: var(--transition);
        }
        
        .policy-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .policy-card h4 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .policy-card h4 i {
            color: var(--accent);
        }
        
        .policy-card ul {
            padding-left: 20px;
        }
        
        .policy-card ul li {
            color: var(--gray);
            font-size: 16px;
            margin-bottom: 10px;
            line-height: 1.6;
            position: relative;
            padding-left: 15px;
        }
        
        .policy-card ul li::before {
            content: '•';
            color: var(--accent);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* 公司架构 */
        .company-structure {
            background-color: var(--light);
            padding: 30px;
            border-radius: var(--radius-lg);
            margin-top: 30px;
            overflow: auto;
        }
        
        .structure-diagram {
            min-width: 800px;
            padding: 20px;
        }
        
        .structure-level {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .structure-node {
            background-color: var(--white);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            text-align: center;
            width: 180px;
            position: relative;
            border: 2px solid var(--light-gray);
        }
        
        .structure-node.main {
            background: linear-gradient(135deg, #0d5d8c, #1a8cff);
            color: var(--white);
            border-color: var(--accent);
        }
        
        .structure-node h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .structure-node p {
            font-size: 14px;
            color: var(--gray);
        }
        
        .structure-node.main p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .structure-connector {
            position: absolute;
            width: 2px;
            background-color: var(--light-gray);
            height: 40px;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .structure-level.middle .structure-node {
            margin: 0 20px;
        }
        
        .structure-connector.horizontal {
            width: 20px;
            height: 2px;
            position: absolute;
            top: 50%;
            left: -20px;
            bottom: auto;
        }
        
        /* 优劣势对比 */
        .pros-cons-section {
            background-color: var(--white);
            padding: 100px 0;
        }
        
        .pros-cons-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .pros-cons-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        
        .pros-cons-header {
            padding: 25px 30px;
            text-align: center;
            color: var(--white);
            font-size: 20px;
            font-weight: 700;
        }
        
        .pros-header {
            background: linear-gradient(135deg, #10b981, #059669);
        }
        
        .cons-header {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }
        
        .pros-cons-content {
            padding: 30px;
        }
        
        .pros-cons-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .pros-cons-item i {
            font-size: 20px;
            margin-right: 15px;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .pros-item i {
            color: #10b981;
        }
        
        .cons-item i {
            color: #ef4444;
        }
        
        .pros-cons-item p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.6;
        }
        
        /* 注册流程 */
        .process-section {
            background-color: var(--light);
            padding: 100px 0;
        }
        
        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background-color: var(--light-gray);
        }
        
        .process-step {
            display: flex;
            margin-bottom: 60px;
            position: relative;
        }
        
        .process-step:nth-child(odd) {
            flex-direction: row;
        }
        
        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .step-content {
            width: 45%;
            padding: 30px;
            background-color: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
        }
        
        .step-number {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background-color: var(--accent);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            z-index: 2;
        }
        
        .step-content h4 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .step-content p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.6;
        }
        
        /* CTA区域 */
        .cta-section {
            background: linear-gradient(135deg, #0d5d8c 0%, #1a8cff 100%);
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 42px;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .cta-content p {
            font-size: 20px;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-weight: 600;
            font-size: 16px;
            border-radius: var(--radius);
            transition: var(--transition);
            cursor: pointer;
            border: none;
            outline: none;
            gap: 10px;
        }
        
        .btn-primary {
            background-color: var(--accent);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(0, 168, 232, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 168, 232, 0.4);
            background-color: #0097d1;
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-secondary:hover {
            border-color: var(--white);
            transform: translateY(-3px);
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* 响应式 */
        @media (max-width: 1200px) {
            .overview-content, .tax-content, .pros-cons-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .policy-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 992px) {
            .process-timeline::before {
                left: 30px;
            }
            
            .process-step {
                flex-direction: row !important;
                margin-left: 60px;
            }
            
            .step-content {
                width: 100%;
            }
            
            .step-number {
                left: 0;
                transform: translateX(-50%);
            }
        }
        
        @media (max-width: 768px) {
            .page-hero {
                padding: 100px 0 60px;
            }
            
            .page-hero-content h1 {
                font-size: 36px;
            }
            
            .page-hero-content p {
                font-size: 18px;
            }
            
            .overview-text h2 {
                font-size: 28px;
            }
            
            .tax-highlight .tax-rate {
                font-size: 36px;
            }
            
            .cta-content h2 {
                font-size: 32px;
            }
            
            .cta-content p {
                font-size: 18px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 576px) {
            .structure-diagram {
                min-width: 100%;
            }
            
            .structure-level {
                flex-direction: column;
                align-items: center;
            }
            
            .structure-level.middle .structure-node {
                margin: 10px 0;
            }
            
            .structure-connector.horizontal {
                display: none;
            }
        }
        
        /* ====== 独享CSS结束 ====== */