  /* 页面标题样式 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: var(--text-light);
            padding: 100px 0 60px;
            text-align: center;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/1.jpg') no-repeat center center;
            background-size: cover;
            opacity: 0.2;
            z-index: 1;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
        }

        .page-title {
            font-size: 42px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .page-subtitle {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* 面包屑导航 */
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px 0;
            margin-bottom: 40px;
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .breadcrumb a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--secondary-color);
        }

        .breadcrumb-separator {
            margin: 0 10px;
            color: #ccc;
        }

        .breadcrumb-current {
            color: var(--secondary-color);
        }

        /* 公司介绍样式 */
        .about-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .about-text p {
            margin-bottom: 20px;
            color: #666;
            line-height: 1.8;
        }

        .about-stats {
            display: flex;
            margin-top: 30px;
            gap: 20px;
        }

        .stat {
            flex: 1;
            text-align: center;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .stat:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .stat-number {
            font-size: 40px;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .stat-text {
            color: var(--primary-color);
            font-weight: 600;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .about-image:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* 核心优势样式 */
        .advantages-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .advantage-card {
            background-color: #fff;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--secondary-color);
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .advantage-icon {
            font-size: 50px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .advantage-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        /* 服务流程样式 */
        .process-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--secondary-color);
            z-index: 1;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            width: 22%;
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            position: relative;
        }

        .step-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        /* 法律保障样式 */
        .legal-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }

        .legal-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .legal-text {
            flex: 1;
        }

        .legal-text h2 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .legal-text h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .legal-text p {
            margin-bottom: 20px;
            color: #666;
            line-height: 1.8;
        }

        .legal-points {
            list-style: none;
            margin-top: 30px;
        }

        .legal-points li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            padding: 15px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        .legal-points li:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .legal-points i {
            color: var(--secondary-color);
            margin-right: 15px;
            font-size: 18px;
            margin-top: 3px;
        }

        .legal-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .legal-image:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .legal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .legal-image:hover img {
            transform: scale(1.05);
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-content, .legal-content {
                flex-direction: column;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                width: 45%;
                margin-bottom: 30px;
            }
            
            .process-steps::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 36px;
            }
            
            .about-text h2, .legal-text h2 {
                font-size: 28px;
            }
            
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .about-stats {
                flex-direction: column;
            }
            
            .process-step {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .page-title {
                font-size: 30px;
            }
            
            .page-subtitle {
                font-size: 16px;
            }
            
            .about-text h2, .legal-text h2 {
                font-size: 24px;
            }
            
            .stat-number {
                font-size: 32px;
            }
        }