    /* ===== 页面头部样式 ===== */
        .page-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header h1 {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 30px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        }

        .page-header p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 40px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
        }

        /* ===== 服务类型展示 ===== */
        .services-overview {
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: white;
            border-radius: 0;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            padding: 50px 30px;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-20px);
            color: white;
            border-color: var(--primary);
        }

        .service-card:hover .service-icon {
            color: white;
            transform: scale(1.3) rotate(15deg);
        }

        .service-card:hover h3 {
            color: white;
        }

        .service-icon {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 30px;
            transition: var(--transition);
        }

        .service-card h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        /* ===== 开发区免费注册 ===== */
        .free-registration {
            background: var(--light);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .free-registration h2 {
            font-size: 3rem;
            margin-bottom: 30px;
            color: var(--dark);
        }

        .free-registration p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--gray);
        }

        /* ===== 注册流程 ===== */
        .registration-process {
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .process-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 60px;
        }

        .process-step {
            width: 18%;
            text-align: center;
            position: relative;
            margin-bottom: 40px;
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 70px;
            right: -40%;
            width: 80%;
            height: 4px;
            background: var(--primary);
            z-index: 1;
        }

        .step-icon {
            width: 140px;
            height: 140px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: var(--primary);
            font-size: 3rem;
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
            border: 4px solid white;
        }

        .step-icon::before {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            background: var(--primary);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .process-step:hover .step-icon {
            transform: scale(1.1);
            color: white;
        }

        .process-step:hover .step-icon::before {
            opacity: 1;
        }

        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .step-content h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 15px;
        }

        /* ===== 所需材料 ===== */
        .required-materials {
            background: var(--light);
            position: relative;
            overflow: hidden;
        }

        .materials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 40px;
        }

        .material-card {
            background: white;
            border-radius: 0;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .material-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: var(--secondary);
            transition: var(--transition);
        }

        .material-card:hover::before {
            width: 100%;
            opacity: 0.1;
        }

        .material-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .material-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .material-card:hover .material-icon {
            transform: scale(1.2);
            color: var(--secondary);
        }

        .material-card h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .material-list {
            list-style: none;
        }

        .material-list li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }

        .material-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* ===== 办理周期 ===== */
        .processing-time {
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .time-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 50px;
            box-shadow: var(--shadow);
        }

        .time-table th, .time-table td {
            padding: 25px 20px;
            text-align: left;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .time-table th {
            background: var(--primary);
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .time-table tr:nth-child(even) {
            background: rgba(0, 0, 0, 0.02);
        }

        .time-table tr:hover {
            background: rgba(255, 107, 107, 0.05);
        }

        .time-badge {
            display: inline-block;
            padding: 8px 16px;
            background: var(--accent);
            color: var(--dark);
            border-radius: 0;
            font-weight: 700;
            font-size: 0.9rem;
        }

        /* ===== 响应式设计 ===== */
        @media (max-width: 1200px) {
            .page-header h1 {
                font-size: 4rem;
            }
        }

        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 3.5rem;
            }
            
            .process-step {
                width: 48%;
                margin-bottom: 60px;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 150px 0 80px;
            }
            
            .page-header h1 {
                font-size: 3rem;
            }
            
            .page-header p {
                font-size: 1.3rem;
            }
            
            .services-grid, .materials-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                width: 100%;
            }
            
            .time-table {
                display: block;
                overflow-x: auto;
            }
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .page-header p {
                font-size: 1.1rem;
            }
            
            .free-registration h2 {
                font-size: 2.2rem;
            }
        }