  :root {
            --primary-dark: #0f3057;
            --primary-main: #00587a;
            --primary-light: #008891;
            --accent: #00bcd4;
            --accent-light: #26c6da;
            --hr-color: #2c5aa0;
            --hr-light: #4a72c2;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --text-primary: #212121;
            --text-secondary: #757575;
            --text-light: #ffffff;
            --background: #f8f9fa;
            --surface: #ffffff;
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
            background-color: var(--background);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 26px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin: 0 12px;
        }
        
        nav ul li a {
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            transition: var(--transition);
            color: var(--text-primary);
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, var(--hr-color), var(--hr-light));
            transition: var(--transition);
            border-radius: 1px;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        nav ul li a:hover {
            color: var(--primary-main);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-dark);
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(90deg, rgba(44, 90, 160, 0.85) 0%, rgba(74, 114, 194, 0.75) 100%), url('/jia/images/bangongshi.jpg') center/cover no-repeat;
            height: 400px;
            display: flex;
            align-items: center;
            color: var(--text-light);
            margin-top: 60px;
            padding: 0 50px;
            text-align: center;
        }
        
        .page-header-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .page-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .page-header p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.95;
            line-height: 1.6;
        }
        
        .breadcrumb {
            display: flex;
            list-style: none;
            margin-bottom: 20px;
            justify-content: center;
        }
        
        .breadcrumb li {
            margin-right: 10px;
            display: flex;
            align-items: center;
        }
        
        .breadcrumb li:after {
            content: '/';
            margin-left: 10px;
            opacity: 0.7;
        }
        
        .breadcrumb li:last-child:after {
            content: '';
            margin: 0;
        }
        
        .breadcrumb a {
            color: var(--text-light);
            opacity: 0.9;
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            opacity: 1;
            color: var(--accent-light);
        }
        
        /* HR Specific Styles */
        .hr-badge {
            background: linear-gradient(135deg, var(--hr-color), var(--hr-light));
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: var(--shadow-md);
        }
        
        .btn-hr {
            display: inline-block;
            padding: 14px 36px;
            background: linear-gradient(to right, var(--hr-color), var(--hr-light));
            color: white;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .btn-hr::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition);
        }
        
        .btn-hr:hover::before {
            left: 100%;
        }
        
        .btn-hr:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        
        /* Services Section */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--hr-color), var(--hr-light));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--text-secondary);
            max-width: 700px;
            margin: 25px auto 0;
            font-size: 18px;
        }
        
        /* Service Types Grid */
        .service-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .service-type-card {
            background: var(--surface);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border-top: 4px solid var(--hr-color);
            position: relative;
            overflow: hidden;
        }
        
        .service-type-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .service-type-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--hr-light), var(--hr-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 20px;
            transition: var(--transition);
        }
        
        .service-type-card:hover .service-type-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-type-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .service-type-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* Process Section */
        .process-section {
            background: linear-gradient(to bottom, #f0f5ff, #e6eeff);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .process-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--hr-light) 0%, var(--hr-color) 100%);
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            padding: 40px 30px;
            background: var(--surface);
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border-left: 4px solid var(--hr-color);
        }
        
        .process-step:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--hr-light), var(--hr-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 20px;
            transition: var(--transition);
        }
        
        .process-step:hover .step-number {
            transform: scale(1.1);
        }
        
        .process-step h3 {
            margin-bottom: 15px;
            color: var(--primary-dark);
            font-size: 20px;
        }
        
        .process-step p {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* Requirements Section */
        .requirements-section {
            background: linear-gradient(to bottom, var(--primary-dark), var(--primary-main));
            color: var(--text-light);
            padding: 100px 0;
            position: relative;
        }
        
        .requirements-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/jia/images/bangongshi12.jpg') center/cover no-repeat;
            opacity: 0.1;
            z-index: 0;
        }
        
        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }
        
        .requirement-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }
        
        .requirement-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        
        .requirement-card h3 {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--text-light);
            display: flex;
            align-items: center;
        }
        
        .requirement-card h3 i {
            margin-right: 12px;
            color: var(--hr-light);
        }
        
        .requirement-card ul {
            list-style: none;
        }
        
        .requirement-card ul li {
            margin-bottom: 12px;
            padding-left: 28px;
            position: relative;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .requirement-card ul li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--hr-light);
            font-weight: bold;
        }
        
        /* Advantages Section */
        .advantages-section {
            padding: 100px 0;
            background: var(--surface);
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .advantage-card {
            background: var(--surface);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border-bottom: 4px solid var(--hr-color);
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .advantage-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--hr-light), var(--hr-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 25px;
            transition: var(--transition);
        }
        
        .advantage-card:hover .advantage-icon {
            transform: scale(1.1);
        }
        
        .advantage-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .advantage-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* FAQ Section */
        .faq-section {
            background: linear-gradient(135deg, #f0f5ff 0%, #e6eeff 100%);
            padding: 100px 0;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--surface);
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: var(--transition);
            border-left: 4px solid var(--hr-color);
        }
        
        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }
        
        .faq-question {
            padding: 25px 30px;
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            color: var(--hr-color);
        }
        
        .faq-question i {
            transition: var(--transition);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 25px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(90deg, var(--hr-color) 0%, var(--hr-light) 100%);
            color: var(--text-light);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/jia/images/bangongshi11.jpg') center/cover no-repeat;
            opacity: 0.1;
            z-index: 0;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .cta-content h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(to bottom, var(--primary-dark), var(--primary-main));
            color: var(--text-light);
            padding: 80px 0 30px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/jia/images/bangongshi10.jpg') center/cover no-repeat;
            opacity: 0.05;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: var(--text-light);
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--hr-light);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            transition: var(--transition);
            opacity: 0.8;
            color: var(--text-light);
        }
        
        .footer-column ul li a:hover {
            opacity: 1;
            color: var(--hr-light);
            padding-left: 5px;
        }
        
        .footer-column p {
            opacity: 0.8;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            color: var(--text-light);
        }
        
        .footer-column i {
            margin-right: 10px;
            color: var(--hr-light);
        }
        
        .qrcode {
            margin-top: 20px;
            text-align: center;
        }
        
        .qrcode img {
            width: 150px;
            height: 150px;
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: var(--shadow-md);
        }
        
        .qrcode p {
            margin-top: 10px;
            font-size: 14px;
        }
        
        .friend-links {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
            position: relative;
            z-index: 1;
        }
        
        .friend-links a {
            margin: 0 10px;
            opacity: 0.7;
            transition: var(--transition);
            color: var(--text-light);
        }
        
        .friend-links a:hover {
            opacity: 1;
            color: var(--hr-light);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 14px;
            position: relative;
            z-index: 1;
            color: var(--text-light);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .page-header h1 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                height: 350px;
                padding: 0 20px;
            }
            
            .page-header h1 {
                font-size: 32px;
            }
            
            .page-header p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .cta-content h2 {
                font-size: 32px;
            }
            
            .cta-content p {
                font-size: 18px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 576px) {
            .page-header {
                height: 300px;
            }
            
            .page-header h1 {
                font-size: 28px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .service-types-grid,
            .process-steps,
            .requirements-grid,
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .faq-question {
                padding: 20px;
                font-size: 18px;
            }
            
            .faq-answer {
                padding: 0 20px;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 20px 20px;
            }
        }