* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background: linear-gradient(135deg, #F8FAFF 0%, #E8EDFA 100%); color: #1A2C3E; line-height: 1.5; min-height: 100vh; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        
        /* 按钮风格 */
        .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: #2C6BFF; color: white; font-weight: 600; padding: 14px 32px; border-radius: 48px; text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; font-size: 16px; box-shadow: 0 4px 14px rgba(44,107,255,0.3); }
        .btn-primary:hover { background: #1a56e0; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(44,107,255,0.4); }
        .btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 2px solid #2C6BFF; color: #2C6BFF; font-weight: 600; padding: 12px 28px; border-radius: 48px; text-decoration: none; transition: all 0.2s; font-size: 16px; cursor: pointer; }
        .btn-outline:hover { background: rgba(44,107,255,0.05); transform: translateY(-2px); }
        
        
        /* 页面头部 */
        .page-header { text-align: center; padding: 60px 0 40px; }
        .page-header h1 { font-size: 48px; font-weight: 800; background: linear-gradient(135deg, #1A2C3E, #2C6BFF); background-clip: text; -webkit-background-clip: text; color: transparent; margin-bottom: 16px; }
        .page-header p { font-size: 18px; color: #5A6E8C; max-width: 600px; margin: 0 auto; }
        
        /* 申请表单区域 */
        .apply-section { display: flex; flex-wrap: wrap; gap: 48px; margin: 20px 0 60px; }
        .apply-info { flex: 1; background: white; border-radius: 32px; padding: 40px; box-shadow: 0 8px 24px rgba(0,0,0,0.05); border: 1px solid #EDF2F7; }
        .apply-form { flex: 1.2; background: white; border-radius: 32px; padding: 40px; box-shadow: 0 8px 24px rgba(0,0,0,0.05); border: 1px solid #EDF2F7; }
        .info-title { font-size: 24px; font-weight: 700; margin-bottom: 20px; }
        .info-list { list-style: none; margin: 24px 0; }
        .info-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; font-size: 16px; color: #2C3E50; }
        .info-list li .icon { font-size: 24px; color: #2C6BFF; }
        .contact-ways { margin-top: 32px; padding-top: 24px; border-top: 1px solid #EDF2F7; }
        .contact-ways p { margin-bottom: 12px; font-weight: 500; }
        .contact-ways .phone { font-size: 28px; font-weight: 800; color: #2C6BFF; margin: 8px 0; }
        
        /* 表单样式 */
        .form-group { margin-bottom: 24px; }
        .form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; color: #1A2C3E; }
        .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 1.5px solid #E2E8F0; border-radius: 16px; font-size: 15px; transition: all 0.2s; font-family: inherit; }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #2C6BFF; box-shadow: 0 0 0 3px rgba(44,107,255,0.1); }
        .form-group textarea { resize: vertical; min-height: 100px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .submit-btn { width: 100%; background: #2C6BFF; color: white; border: none; padding: 16px; border-radius: 48px; font-weight: 700; font-size: 18px; cursor: pointer; transition: 0.2s; margin-top: 8px; }
        .submit-btn:hover { background: #1a56e0; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(44,107,255,0.3); }
        .privacy-note { text-align: center; font-size: 12px; color: #8A99B4; margin-top: 20px; }
        .privacy-note a { color: #2C6BFF; text-decoration: none; }
        
        /* 页脚 */
        
        @media (max-width: 900px) {
            .apply-section { flex-direction: column; }
            .form-row { grid-template-columns: 1fr; gap: 0; }
            .page-header h1 { font-size: 36px; }
        }